interface ContainerProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMRContainers.CfnSecurityConfigurationPropsMixin.ContainerProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemrcontainers#CfnSecurityConfigurationPropsMixin_ContainerProviderProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emrcontainers.CfnSecurityConfigurationPropsMixin.ContainerProviderProperty |
Python | aws_cdk.cfn_property_mixins.aws_emrcontainers.CfnSecurityConfigurationPropsMixin.ContainerProviderProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emrcontainers » CfnSecurityConfigurationPropsMixin » 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/cfn-property-mixins';
const containerProviderProperty: emrcontainers.CfnSecurityConfigurationPropsMixin.ContainerProviderProperty = {
id: 'id',
info: {
eksInfo: {
namespace: 'namespace',
},
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The container provider ID. |
| info? | IResolvable | Container | Container information. |
| type? | string | The container provider type. |
id?
Type:
string
(optional)
The container provider ID.
info?
Type:
IResolvable | Container
(optional)
Container information.
type?
Type:
string
(optional)
The container provider type.

.NET
Go
Java
Python
TypeScript