interface ScalingActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnInstanceGroupConfigPropsMixin.ScalingActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnInstanceGroupConfigPropsMixin_ScalingActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnInstanceGroupConfigPropsMixin.ScalingActionProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnInstanceGroupConfigPropsMixin.ScalingActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » CfnInstanceGroupConfigPropsMixin » 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 { mixins as emr_mixins } from '@aws-cdk/mixins-preview/aws-emr';
const scalingActionProperty: emr_mixins.CfnInstanceGroupConfigPropsMixin.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