Interface CfnCellMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCellMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.492Z")
@Stability(Stable)
public interface CfnCellMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCellPropsMixin.
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.*;
CfnCellMixinProps cfnCellMixinProps = CfnCellMixinProps.builder()
.cellName("cellName")
.cells(List.of("cells"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCellMixinPropsstatic final classAn implementation forCfnCellMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCellMixinProps.Builderbuilder()default StringThe name of the cell to create.getCells()A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.getTags()A collection of tags associated with a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCellName
The name of the cell to create.- See Also:
-
getCells
A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.For example, Availability Zones within specific AWS Regions .
- See Also:
-
getTags
A collection of tags associated with a resource.- See Also:
-
builder
- Returns:
- a
CfnCellMixinProps.BuilderofCfnCellMixinProps
-