@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:43.719Z") @Stability(value=Stable) public interface CfnHealthCheckProps 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.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnHealthCheckProps.Builder
A builder for
CfnHealthCheckProps |
static class |
CfnHealthCheckProps.Jsii$Proxy
An implementation for
CfnHealthCheckProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnHealthCheckProps.Builder |
builder() |
Object |
getHealthCheckConfig()
A complex type that contains detailed information about one health check.
|
default Object |
getHealthCheckTags()
The `HealthCheckTags` property describes key-value pairs that are associated with an `AWS::Route53::HealthCheck` resource.
|
@Stability(value=Stable) @NotNull Object getHealthCheckConfig()
For the values to enter for HealthCheckConfig , see HealthCheckConfig
@Stability(value=Stable) @Nullable default Object getHealthCheckTags()
@Stability(value=Stable) static CfnHealthCheckProps.Builder builder()
CfnHealthCheckProps.Builder of CfnHealthCheckPropsCopyright © 2022. All rights reserved.