interface ScalingActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnClusterPropsMixin.ScalingActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnClusterPropsMixin_ScalingActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnClusterPropsMixin.ScalingActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnClusterPropsMixin.ScalingActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » CfnClusterPropsMixin » ScalingActionProperty |
ScalingAction is a subproperty of the ScalingRule property type.
ScalingAction determines the type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment.
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';
const scalingActionProperty: emr.CfnClusterPropsMixin.ScalingActionProperty = {
market: 'market',
simpleScalingPolicyConfiguration: {
adjustmentType: 'adjustmentType',
coolDown: 123,
scalingAdjustment: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| market? | string | Not available for instance groups. |
| simple | IResolvable | Simple | The type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment. |
market?
Type:
string
(optional)
Not available for instance groups.
Instance groups use the market type specified for the group.
simpleScalingPolicyConfiguration?
Type:
IResolvable | Simple
(optional)
The type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment.

.NET
Go
Java
Python
TypeScript