Interface CfnPlan.Route53HealthChecksProperty

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

@Stability(Stable) public static interface CfnPlan.Route53HealthChecksProperty 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.services.arcregionswitch.*;
 Route53HealthChecksProperty route53HealthChecksProperty = Route53HealthChecksProperty.builder()
         .healthCheckIds(List.of("healthCheckIds"))
         .hostedZoneIds(List.of("hostedZoneIds"))
         .recordNames(List.of("recordNames"))
         .regions(List.of("regions"))
         .build();
 

See Also: