interface ClusterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.ClusterProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#ClusterProps |
Java | software.amazon.awscdk.services.medialive.alpha.ClusterProps |
Python | aws_cdk.aws_medialive_alpha.ClusterProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป ClusterProps |
Properties for creating a MediaLive Cluster.
Example
declare const stack: Stack;
declare const instanceRole: iam.IRole;
const cluster = new medialive.Cluster(stack, 'Cluster', {
clusterName: 'on-prem-cluster',
clusterType: medialive.ClusterType.ON_PREMISES,
instanceRole,
});
Properties
| Name | Type | Description |
|---|---|---|
| instance | IRole | The IAM role for nodes in the cluster. |
| cluster | string | The name of the cluster. |
| cluster | Cluster | The hardware type for the cluster. |
| network | Cluster | Network settings for the cluster - only required if your networking setup requires it. |
| tags? | { [string]: string } | Tags to add to the cluster. |
instanceRole
Type:
IRole
The IAM role for nodes in the cluster.
[disable-awslint:prefer-ref-interface]
clusterName?
Type:
string
(optional, default: auto-generated name)
The name of the cluster.
clusterType?
Type:
Cluster
(optional, default: ClusterType.ON_PREMISES)
The hardware type for the cluster.
networkSettings?
Type:
Cluster
(optional, default: no network settings)
Network settings for the cluster - only required if your networking setup requires it.
tags?
Type:
{ [string]: string }
(optional, default: no tags)
Tags to add to the cluster.

.NET
Go
Java
Python
TypeScript (