interface AutoScalingGroupsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnResponderGatewayPropsMixin.AutoScalingGroupsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnResponderGatewayPropsMixin_AutoScalingGroupsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnResponderGatewayPropsMixin.AutoScalingGroupsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnResponderGatewayPropsMixin.AutoScalingGroupsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » CfnResponderGatewayPropsMixin » AutoScalingGroupsConfigurationProperty |
Describes the configuration of an auto scaling group.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const autoScalingGroupsConfigurationProperty: rtbfabric_mixins.CfnResponderGatewayPropsMixin.AutoScalingGroupsConfigurationProperty = {
autoScalingGroupNameList: ['autoScalingGroupNameList'],
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string[] | The names of the auto scaling group. |
| role | string | The role ARN of the auto scaling group. |
autoScalingGroupNameList?
Type:
string[]
(optional)
The names of the auto scaling group.
roleArn?
Type:
string
(optional)
The role ARN of the auto scaling group.

.NET
Go
Java
Python
TypeScript