interface AutoScalingGroupsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnResponderGateway.AutoScalingGroupsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnResponderGateway_AutoScalingGroupsConfigurationProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnResponderGateway.AutoScalingGroupsConfigurationProperty |
Python | aws_cdk.aws_rtbfabric.CfnResponderGateway.AutoScalingGroupsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnResponderGateway » 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 { aws_rtbfabric as rtbfabric } from 'aws-cdk-lib';
const autoScalingGroupsConfigurationProperty: rtbfabric.CfnResponderGateway.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[]
The names of the auto scaling group.
roleArn
Type:
string
The role ARN of the auto scaling group.

.NET
Go
Java
Python
TypeScript