Interface CfnRecoveryGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecoveryGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.494Z")
@Stability(Stable)
public interface CfnRecoveryGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRecoveryGroupPropsMixin.
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.route53recoveryreadiness.*;
CfnRecoveryGroupMixinProps cfnRecoveryGroupMixinProps = CfnRecoveryGroupMixinProps.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 forCfnRecoveryGroupMixinPropsstatic final classAn implementation forCfnRecoveryGroupMixinProps -
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
CfnRecoveryGroupMixinProps.BuilderofCfnRecoveryGroupMixinProps
-