interface CfnVirtualClusterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRContainers.Mixins.CfnVirtualClusterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrcontainers/mixins#CfnVirtualClusterMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.emrcontainers.mixins.CfnVirtualClusterMixinProps |
Python | aws_cdk.mixins_preview.aws_emrcontainers.mixins.CfnVirtualClusterMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_emrcontainers » mixins » CfnVirtualClusterMixinProps |
Properties for CfnVirtualClusterPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as emrcontainers_mixins } from '@aws-cdk/mixins-preview/aws-emrcontainers';
const cfnVirtualClusterMixinProps: emrcontainers_mixins.CfnVirtualClusterMixinProps = {
containerProvider: {
id: 'id',
info: {
eksInfo: {
namespace: 'namespace',
},
},
type: 'type',
},
name: 'name',
securityConfigurationId: 'securityConfigurationId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | IResolvable | Container | The container provider of the virtual cluster. |
| name? | string | The name of the virtual cluster. |
| security | string | The ID of the security configuration. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
containerProvider?
Type:
IResolvable | Container
(optional)
The container provider of the virtual cluster.
name?
Type:
string
(optional)
The name of the virtual cluster.
securityConfigurationId?
Type:
string
(optional)
The ID of the security configuration.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript