interface ContainerProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnSecurityConfiguration.ContainerProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnSecurityConfiguration_ContainerProviderProperty |
Java | software.amazon.awscdk.services.emrcontainers.CfnSecurityConfiguration.ContainerProviderProperty |
Python | aws_cdk.aws_emrcontainers.CfnSecurityConfiguration.ContainerProviderProperty |
TypeScript | aws-cdk-lib » aws_emrcontainers » CfnSecurityConfiguration » ContainerProviderProperty |
Container provider information.
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.CfnSecurityConfiguration.ContainerProviderProperty = {
id: 'id',
type: 'type',
// the properties below are optional
info: {
eksInfo: {
namespace: 'namespace',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The container provider ID. |
| type | string | The container provider type. |
| info? | IResolvable | Container | Container information. |
id
Type:
string
The container provider ID.
type
Type:
string
The container provider type.
info?
Type:
IResolvable | Container
(optional)
Container information.

.NET
Go
Java
Python
TypeScript