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 Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for CfnCellProps
    static final class 
    An implementation for CfnCellProps
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default String
    The name of the cell to create.
    default List<String>
    A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells.
    default List<CfnTag>
    A collection of tags associated with a resource.

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Method Details

    • getCellName

      @Stability(Stable) @Nullable default String getCellName()
      The name of the cell to create.
    • getCells

      @Stability(Stable) @Nullable default List<String> 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

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      A collection of tags associated with a resource.
    • builder

      @Stability(Stable) static CfnCellProps.Builder builder()
      Returns:
      a CfnCellProps.Builder of CfnCellProps