Interface CfnIPAMScopeProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIPAMScopeProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:38.614Z") @Stability(Stable) public interface CfnIPAMScopeProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnIPAMScope.

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.ec2.*;
 CfnIPAMScopeProps cfnIPAMScopeProps = CfnIPAMScopeProps.builder()
         .ipamId("ipamId")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getIpamId

      @Stability(Stable) @NotNull String getIpamId()
      The ID of the IPAM for which you're creating this scope.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the scope.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The key/value combination of a tag assigned to the resource.

      Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA , specify tag:Owner for the filter name and TeamA for the filter value.

    • builder

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