@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.191Z") @Stability(value=Stable) public interface CfnIPAMProps 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.ec2.*;
CfnIPAMProps cfnIPAMProps = CfnIPAMProps.builder()
.description("description")
.operatingRegions(List.of(IpamOperatingRegionProperty.builder()
.regionName("regionName")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnIPAMProps.Builder
A builder for
CfnIPAMProps |
static class |
CfnIPAMProps.Jsii$Proxy
An implementation for
CfnIPAMProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnIPAMProps.Builder |
builder() |
default String |
getDescription()
The description for the IPAM.
|
default Object |
getOperatingRegions()
The operating Regions for an IPAM.
|
default List<CfnTag> |
getTags()
The key/value combination of a tag assigned to the resource.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getOperatingRegions()
Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions.
For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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.
@Stability(value=Stable) static CfnIPAMProps.Builder builder()
CfnIPAMProps.Builder of CfnIPAMPropsCopyright © 2022. All rights reserved.