@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.693Z") @Stability(value=Stable) public interface CfnCellProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnCellProps cfnCellProps = CfnCellProps.builder()
.cellName("cellName")
// the properties below are optional
.cells(List.of("cells"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCellProps.Builder
A builder for
CfnCellProps |
static class |
CfnCellProps.Jsii$Proxy
An implementation for
CfnCellProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCellProps.Builder |
builder() |
String |
getCellName()
The name of the cell to create.
|
default List<String> |
getCells()
A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.
|
default List<CfnTag> |
getTags()
A collection of tags associated with a resource.
|
@Stability(value=Stable) @NotNull String getCellName()
@Stability(value=Stable) @Nullable default List<String> getCells()
For example, Availability Zones within specific AWS Regions .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnCellProps.Builder builder()
CfnCellProps.Builder of CfnCellPropsCopyright © 2022. All rights reserved.