interface CfnVirtualClusterProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnVirtualClusterProps |
Java | software.amazon.awscdk.services.emrcontainers.CfnVirtualClusterProps |
Python | aws_cdk.aws_emrcontainers.CfnVirtualClusterProps |
TypeScript | @aws-cdk/aws-emrcontainers » CfnVirtualClusterProps |
Properties for defining a CfnVirtualCluster
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as emrcontainers from '@aws-cdk/aws-emrcontainers';
const cfnVirtualClusterProps: emrcontainers.CfnVirtualClusterProps = {
containerProvider: {
id: 'id',
info: {
eksInfo: {
namespace: 'namespace',
},
},
type: 'type',
},
name: 'name',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
container | Container | IResolvable | The container provider of the virtual cluster. |
name | string | The name of the virtual cluster. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
containerProvider
Type:
Container
|
IResolvable
The container provider of the virtual cluster.
name
Type:
string
The name of the virtual cluster.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .