Interface CfnResponderGateway.AutoScalingGroupsConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResponderGateway.AutoScalingGroupsConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnResponderGateway

@Stability(Stable) public static interface CfnResponderGateway.AutoScalingGroupsConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.rtbfabric.*;
 AutoScalingGroupsConfigurationProperty autoScalingGroupsConfigurationProperty = AutoScalingGroupsConfigurationProperty.builder()
         .autoScalingGroupNameList(List.of("autoScalingGroupNameList"))
         .roleArn("roleArn")
         // the properties below are optional
         .healthCheckConfig(HealthCheckConfigProperty.builder()
                 .path("path")
                 .port(123)
                 // the properties below are optional
                 .healthyThresholdCount(123)
                 .intervalSeconds(123)
                 .protocol("protocol")
                 .statusCodeMatcher("statusCodeMatcher")
                 .timeoutMs(123)
                 .unhealthyThresholdCount(123)
                 .build())
         .build();
 

See Also: