Interface CfnPlan.Route53HealthCheckConfigurationProperty

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

@Stability(Stable) public static interface CfnPlan.Route53HealthCheckConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The Amazon Route 53 health check configuration.

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.*;
 Route53HealthCheckConfigurationProperty route53HealthCheckConfigurationProperty = Route53HealthCheckConfigurationProperty.builder()
         .hostedZoneId("hostedZoneId")
         .recordName("recordName")
         // the properties below are optional
         .crossAccountRole("crossAccountRole")
         .externalId("externalId")
         .recordSets(List.of(Route53ResourceRecordSetProperty.builder()
                 .recordSetIdentifier("recordSetIdentifier")
                 .region("region")
                 .build()))
         .timeoutMinutes(123)
         .build();
 

See Also: