Interface CfnReadinessCheckProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReadinessCheckProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:47.540Z")
@Stability(Stable)
public interface CfnReadinessCheckProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnReadinessCheck.
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.route53recoveryreadiness.*;
CfnReadinessCheckProps cfnReadinessCheckProps = CfnReadinessCheckProps.builder()
.readinessCheckName("readinessCheckName")
.resourceSetName("resourceSetName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReadinessCheckPropsstatic final classAn implementation forCfnReadinessCheckProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReadinessCheckName
The name of the readiness check to create.- See Also:
-
getResourceSetName
The name of the resource set to check.- See Also:
-
getTags
A collection of tags associated with a resource.- See Also:
-
builder
- Returns:
- a
CfnReadinessCheckProps.BuilderofCfnReadinessCheckProps
-