Interface CfnHealthCheckMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHealthCheckMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.540Z")
@Stability(Stable)
public interface CfnHealthCheckMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnHealthCheckPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.route53.*;
CfnHealthCheckMixinProps cfnHealthCheckMixinProps = CfnHealthCheckMixinProps.builder()
.healthCheckConfig(HealthCheckConfigProperty.builder()
.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")
.type("type")
.build())
.healthCheckTags(List.of(HealthCheckTagProperty.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHealthCheckMixinPropsstatic final classAn implementation forCfnHealthCheckMixinProps -
Method Summary
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 HealthCheckConfigReturns union: either
IResolvableorCfnHealthCheckPropsMixin.HealthCheckConfigProperty- See Also:
-
getHealthCheckTags
@Stability(Stable) @Nullable default List<CfnHealthCheckPropsMixin.HealthCheckTagProperty> getHealthCheckTags()TheHealthCheckTagsproperty describes key-value pairs that are associated with anAWS::Route53::HealthCheckresource.- See Also:
-
builder
- Returns:
- a
CfnHealthCheckMixinProps.BuilderofCfnHealthCheckMixinProps
-