interface CfnClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnClusterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnClusterMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnClusterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnClusterMixinProps |
Properties for CfnClusterPropsMixin.
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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const cfnClusterMixinProps: medialive_mixins.CfnClusterMixinProps = {
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.

.NET
Go
Java
Python
TypeScript