Interface CfnApplicationStatusCheckProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationStatusCheckProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-10T17:51:43.421Z") @Stability(Stable) public interface CfnApplicationStatusCheckProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnApplicationStatusCheck.

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.ec2.*;
 CfnApplicationStatusCheckProps cfnApplicationStatusCheckProps = CfnApplicationStatusCheckProps.builder()
         .port(123)
         .protocol("protocol")
         // the properties below are optional
         .aggregation("aggregation")
         .deviceIndex(123)
         .failureThreshold(123)
         .healthCheckPaths(List.of(HealthCheckPathProperty.builder()
                 .destinations(List.of(HealthCheckPathDestinationProperty.builder()
                         .securityGroupId("securityGroupId")
                         .subnetId("subnetId")
                         .build()))
                 .source(HealthCheckPathSourceProperty.builder()
                         .securityGroupId("securityGroupId")
                         .subnetId("subnetId")
                         .build())
                 .build()))
         .initializationGracePeriodSeconds(123)
         .interval(123)
         .ipScope("ipScope")
         .ipVersion("ipVersion")
         .path("path")
         .statusCodeMatcher("statusCodeMatcher")
         .successThreshold(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .timeout(123)
         .build();
 

See Also: