aws-cdk-lib.aws_emrcontainers.CfnVirtualCluster.ContainerProviderProperty

interface ContainerProviderProperty

LanguageType name
.NETAmazon.CDK.AWS.EMRContainers.CfnVirtualCluster.ContainerProviderProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnVirtualCluster_ContainerProviderProperty
Javasoftware.amazon.awscdk.services.emrcontainers.CfnVirtualCluster.ContainerProviderProperty
Pythonaws_cdk.aws_emrcontainers.CfnVirtualCluster.ContainerProviderProperty
TypeScript aws-cdk-lib » aws_emrcontainers » CfnVirtualCluster » ContainerProviderProperty

The information about the container provider.

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 containerProviderProperty: emrcontainers.CfnVirtualCluster.ContainerProviderProperty = {
  id: 'id',
  info: {
    eksInfo: {
      namespace: 'namespace',
    },
  },
  type: 'type',
};

Properties

NameTypeDescription
idstringThe ID of the container cluster.
infoIResolvable | ContainerInfoPropertyThe information about the container cluster.
typestringThe type of the container provider.

id

Type: string

The ID of the container cluster.

Minimum : 1

Maximum : 100

Pattern : ^[0-9A-Za-z][A-Za-z0-9\-_]*


info

Type: IResolvable | ContainerInfoProperty

The information about the container cluster.


type

Type: string

The type of the container provider.

Amazon EKS is the only supported type as of now.