interface EMRConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnCluster.EMRConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnCluster_EMRConfigurationProperty |
Java | software.amazon.awscdk.services.emr.CfnCluster.EMRConfigurationProperty |
Python | aws_cdk.aws_emr.CfnCluster.EMRConfigurationProperty |
TypeScript | aws-cdk-lib » aws_emr » CfnCluster » 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-lib';
declare const eMRConfigurationProperty_: emr.CfnCluster.EMRConfigurationProperty;
const eMRConfigurationProperty: emr.CfnCluster.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