interface EMRConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnClusterPropsMixin.EMRConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnClusterPropsMixin_EMRConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnClusterPropsMixin.EMRConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnClusterPropsMixin.EMRConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » CfnClusterPropsMixin » EMRConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_emr as emr } from '@aws-cdk/cfn-property-mixins';
declare const eMRConfigurationProperty_: emr.CfnClusterPropsMixin.EMRConfigurationProperty;
const eMRConfigurationProperty: emr.CfnClusterPropsMixin.EMRConfigurationProperty = {
classification: 'classification',
configurationProperties: {
configurationPropertiesKey: 'configurationProperties',
},
configurations: [eMRConfigurationProperty_],
};
Properties
| Name | Type | Description |
|---|---|---|
| classification? | string | The classification within a configuration. |
| configuration | { [string]: string } | IResolvable | |
| configurations? | IResolvable | (IResolvable | EMRConfiguration)[] |
classification?
Type:
string
(optional)
The classification within a configuration.
configurationProperties?
Type:
{ [string]: string } | IResolvable
(optional)
configurations?
Type:
IResolvable | (IResolvable | EMRConfiguration)[]
(optional)

.NET
Go
Java
Python
TypeScript