interface CfnClusterProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MediaLive.CfnClusterProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnClusterProps |
![]() | software.amazon.awscdk.services.medialive.CfnClusterProps |
![]() | aws_cdk.aws_medialive.CfnClusterProps |
![]() | aws-cdk-lib » aws_medialive » CfnClusterProps |
Properties for defining a CfnCluster
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-cluster.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const cfnClusterProps: medialive.CfnClusterProps = {
clusterType: 'clusterType',
instanceRoleArn: 'instanceRoleArn',
name: 'name',
networkSettings: {
defaultRoute: 'defaultRoute',
interfaceMappings: [{
logicalInterfaceName: 'logicalInterfaceName',
networkId: 'networkId',
}],
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
cluster | string | The hardware type for the cluster. |
instance | string | The IAM role your nodes will use. |
name? | string | The user-specified name of the Cluster to be created. |
network | IResolvable | Cluster | On premises settings which will have the interface network mappings and default Output logical interface. |
tags? | Cfn [] | A collection of key-value pairs. |
clusterType?
Type:
string
(optional)
The hardware type for the cluster.
instanceRoleArn?
Type:
string
(optional)
The IAM role your nodes will use.
name?
Type:
string
(optional)
The user-specified name of the Cluster to be created.
networkSettings?
Type:
IResolvable
|
Cluster
(optional)
On premises settings which will have the interface network mappings and default Output logical interface.
tags?
Type:
Cfn
[]
(optional)
A collection of key-value pairs.