Interface CfnRecoveryGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecoveryGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:47.541Z")
@Stability(Stable)
public interface CfnRecoveryGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRecoveryGroup.
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.*;
CfnRecoveryGroupProps cfnRecoveryGroupProps = CfnRecoveryGroupProps.builder()
.cells(List.of("cells"))
.recoveryGroupName("recoveryGroupName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecoveryGroupPropsstatic final classAn implementation forCfnRecoveryGroupProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCells
A list of the cell Amazon Resource Names (ARNs) in the recovery group.- See Also:
-
getRecoveryGroupName
The name of the recovery group to create.- See Also:
-
getTags
A collection of tags associated with a resource.- See Also:
-
builder
- Returns:
- a
CfnRecoveryGroupProps.BuilderofCfnRecoveryGroupProps
-