aws-cdk-lib.aws_emrcontainers.CfnVirtualClusterProps

interface CfnVirtualClusterProps

LanguageType name
.NETAmazon.CDK.AWS.EMRContainers.CfnVirtualClusterProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnVirtualClusterProps
Javasoftware.amazon.awscdk.services.emrcontainers.CfnVirtualClusterProps
Pythonaws_cdk.aws_emrcontainers.CfnVirtualClusterProps
TypeScript aws-cdk-lib » 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 { aws_emrcontainers as emrcontainers } from 'aws-cdk-lib';
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

NameTypeDescription
containerProviderIResolvable | ContainerProviderPropertyThe container provider of the virtual cluster.
namestringThe name of the virtual cluster.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

containerProvider

Type: IResolvable | ContainerProviderProperty

The container provider of the virtual cluster.


name

Type: string

The name of the virtual cluster.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .