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',
// the properties below are optional
healthCheckConfig: {
path: 'path',
port: 123,
// the properties below are optional
healthyThresholdCount: 123,
intervalSeconds: 123,
protocol: 'protocol',
statusCodeMatcher: 'statusCodeMatcher',
timeoutMs: 123,
unhealthyThresholdCount: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | string[] | The names of the auto scaling group. |
| role | string | The role ARN of the auto scaling group. |
| health | IResolvable | Health |
autoScalingGroupNameList
Type:
string[]
The names of the auto scaling group.
roleArn
Type:
string
The role ARN of the auto scaling group.
healthCheckConfig?
Type:
IResolvable | Health
(optional)

.NET
Go
Java
Python
TypeScript