interface PlacementTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EMR.CfnCluster.PlacementTypeProperty |
Java | software.amazon.awscdk.services.emr.CfnCluster.PlacementTypeProperty |
Python | aws_cdk.aws_emr.CfnCluster.PlacementTypeProperty |
TypeScript | @aws-cdk/aws-emr » CfnCluster » PlacementTypeProperty |
PlacementType is a property of the AWS::EMR::Cluster resource.
PlacementType determines the Amazon EC2 Availability Zone configuration of the cluster (job flow).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as emr from '@aws-cdk/aws-emr';
const placementTypeProperty: emr.CfnCluster.PlacementTypeProperty = {
availabilityZone: 'availabilityZone',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The Amazon EC2 Availability Zone for the cluster. |
availabilityZone
Type:
string
The Amazon EC2 Availability Zone for the cluster.
AvailabilityZone is used for uniform instance groups, while AvailabilityZones (plural) is used for instance fleets.

.NET
Java
Python
TypeScript