interface EMREKSConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMRContainers.CfnEndpoint.EMREKSConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemrcontainers#CfnEndpoint_EMREKSConfigurationProperty |
Java | software.amazon.awscdk.services.emrcontainers.CfnEndpoint.EMREKSConfigurationProperty |
Python | aws_cdk.aws_emrcontainers.CfnEndpoint.EMREKSConfigurationProperty |
TypeScript | aws-cdk-lib » aws_emrcontainers » CfnEndpoint » EMREKSConfigurationProperty |
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';
declare const eMREKSConfigurationProperty_: emrcontainers.CfnEndpoint.EMREKSConfigurationProperty;
const eMREKSConfigurationProperty: emrcontainers.CfnEndpoint.EMREKSConfigurationProperty = {
classification: 'classification',
// the properties below are optional
configurations: [eMREKSConfigurationProperty_],
properties: {
propertiesKey: 'properties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| classification | string | |
| configurations? | IResolvable | (IResolvable | EMREKSConfiguration)[] | |
| properties? | { [string]: string } | IResolvable |
classification
Type:
string
configurations?
Type:
IResolvable | (IResolvable | EMREKSConfiguration)[]
(optional)
properties?
Type:
{ [string]: string } | IResolvable
(optional)

.NET
Go
Java
Python
TypeScript