class ClusterType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.ClusterType |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#ClusterType |
Java | software.amazon.awscdk.services.medialive.alpha.ClusterType |
Python | aws_cdk.aws_medialive_alpha.ClusterType |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป ClusterType |
The hardware type for the 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 |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static EC2 | Cluster | Amazon EC2. |
| static ON_PREMISES | Cluster | On-premises cluster. |
| static OUTPOSTS_RACK | Cluster | AWS Outposts rack. |
| static OUTPOSTS_SERVER | Cluster | AWS Outposts server. |
value
Type:
string
The underlying string value passed to CloudFormation.
static EC2
Type:
Cluster
Amazon EC2.
static ON_PREMISES
Type:
Cluster
On-premises cluster.
static OUTPOSTS_RACK
Type:
Cluster
AWS Outposts rack.
static OUTPOSTS_SERVER
Type:
Cluster
AWS Outposts server.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): ClusterType
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (