interface PlacementTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnClusterPropsMixin.PlacementTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnClusterPropsMixin_PlacementTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnClusterPropsMixin.PlacementTypeProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnClusterPropsMixin.PlacementTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » CfnClusterPropsMixin » 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 { mixins as emr_mixins } from '@aws-cdk/mixins-preview/aws-emr';
const placementTypeProperty: emr_mixins.CfnClusterPropsMixin.PlacementTypeProperty = {
availabilityZone: 'availabilityZone',
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The Amazon EC2 Availability Zone for the cluster. |
availabilityZone?
Type:
string
(optional)
The Amazon EC2 Availability Zone for the cluster.
AvailabilityZone is used for uniform instance groups, while AvailabilityZones (plural) is used for instance fleets.

.NET
Go
Java
Python
TypeScript