Interface CfnHealthCheckProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHealthCheckProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:02:09.124Z")
@Stability(Stable)
public interface CfnHealthCheckProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnHealthCheck
.
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.*; CfnHealthCheckProps cfnHealthCheckProps = CfnHealthCheckProps.builder() .healthCheckConfig(HealthCheckConfigProperty.builder() .type("type") // the properties below are optional .alarmIdentifier(AlarmIdentifierProperty.builder() .name("name") .region("region") .build()) .childHealthChecks(List.of("childHealthChecks")) .enableSni(false) .failureThreshold(123) .fullyQualifiedDomainName("fullyQualifiedDomainName") .healthThreshold(123) .insufficientDataHealthStatus("insufficientDataHealthStatus") .inverted(false) .ipAddress("ipAddress") .measureLatency(false) .port(123) .regions(List.of("regions")) .requestInterval(123) .resourcePath("resourcePath") .routingControlArn("routingControlArn") .searchString("searchString") .build()) // the properties below are optional .healthCheckTags(List.of(HealthCheckTagProperty.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnHealthCheckProps
static final class
An implementation forCfnHealthCheckProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnHealthCheckProps.Builder
builder()
A complex type that contains detailed information about one health check.default Object
TheHealthCheckTags
property describes key-value pairs that are associated with anAWS::Route53::HealthCheck
resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHealthCheckConfig
A complex type that contains detailed information about one health check.For the values to enter for
HealthCheckConfig
, see HealthCheckConfig- See Also:
-
getHealthCheckTags
TheHealthCheckTags
property describes key-value pairs that are associated with anAWS::Route53::HealthCheck
resource.- See Also:
-
builder
- Returns:
- a
CfnHealthCheckProps.Builder
ofCfnHealthCheckProps
-