interface ContainerProviderProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EMRContainers.CfnVirtualCluster.ContainerProviderProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnVirtualCluster_ContainerProviderProperty | 
|  Java | software.amazon.awscdk.services.emrcontainers.CfnVirtualCluster.ContainerProviderProperty | 
|  Python | aws_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
| Name | Type | Description | 
|---|---|---|
| id | string | The ID of the container cluster. | 
| info | IResolvable | Container | The information about the container cluster. | 
| type | string | The 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 | Container
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.
