Interface CfnCellProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCellProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.035Z")
@Stability(Stable)
public interface CfnCellProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCell
.
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") .cells(List.of("cells")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCellProps
static final class
An implementation forCfnCellProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCellProps.Builder
builder()
default String
The 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. -
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 .
-
getTags
A collection of tags associated with a resource. -
builder
- Returns:
- a
CfnCellProps.Builder
ofCfnCellProps
-