Interface CfnApplicationStatusCheckPropsMixin.HealthCheckPathProperty

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

@Stability(Stable) public static interface CfnApplicationStatusCheckPropsMixin.HealthCheckPathProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 HealthCheckPathProperty healthCheckPathProperty = HealthCheckPathProperty.builder()
         .destinations(List.of(HealthCheckPathDestinationProperty.builder()
                 .securityGroupId("securityGroupId")
                 .subnetId("subnetId")
                 .build()))
         .source(HealthCheckPathSourceProperty.builder()
                 .securityGroupId("securityGroupId")
                 .subnetId("subnetId")
                 .build())
         .build();
 

See Also: