Interface CfnHealthCheck.HealthCheckTagProperty

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

@Stability(Stable) public static interface CfnHealthCheck.HealthCheckTagProperty extends software.amazon.jsii.JsiiSerializable
The HealthCheckTag property describes one key-value pair that is associated with an AWS::Route53::HealthCheck resource.

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.route53.*;
 HealthCheckTagProperty healthCheckTagProperty = HealthCheckTagProperty.builder()
         .key("key")
         .value("value")
         .build();
 

See Also: