Interface CfnRecoveryGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecoveryGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.037Z")
@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();
-
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. -
getRecoveryGroupName
The name of the recovery group to create. -
getTags
A collection of tags associated with a resource. -
builder
- Returns:
- a
CfnRecoveryGroupProps.BuilderofCfnRecoveryGroupProps
-