interface ContainerProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRContainers.Mixins.CfnVirtualClusterPropsMixin.ContainerProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrcontainers/mixins#CfnVirtualClusterPropsMixin_ContainerProviderProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrcontainers.mixins.CfnVirtualClusterPropsMixin.ContainerProviderProperty |
Python | aws_cdk.mixins_preview.aws_emrcontainers.mixins.CfnVirtualClusterPropsMixin.ContainerProviderProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrcontainers » mixins » CfnVirtualClusterPropsMixin » 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 { mixins as emrcontainers_mixins } from '@aws-cdk/mixins-preview/aws-emrcontainers';
const containerProviderProperty: emrcontainers_mixins.CfnVirtualClusterPropsMixin.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
(optional)
The ID of the container cluster.
Minimum : 1
Maximum : 100
Pattern : ^[0-9A-Za-z][A-Za-z0-9\-_]*
info?
Type:
IResolvable | Container
(optional)
The information about the container cluster.
type?
Type:
string
(optional)
The type of the container provider.
Amazon EKS is the only supported type as of now.

.NET
Go
Java
Python
TypeScript