@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.921Z") @Stability(value=Stable) public class CfnIPAMPool extends CfnResource implements IInspectable
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.*;
CfnIPAMPool cfnIPAMPool = CfnIPAMPool.Builder.create(this, "MyCfnIPAMPool")
.addressFamily("addressFamily")
.ipamScopeId("ipamScopeId")
// the properties below are optional
.allocationDefaultNetmaskLength(123)
.allocationMaxNetmaskLength(123)
.allocationMinNetmaskLength(123)
.allocationResourceTags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.autoImport(false)
.description("description")
.locale("locale")
.provisionedCidrs(List.of(ProvisionedCidrProperty.builder()
.cidr("cidr")
.build()))
.publiclyAdvertisable(false)
.sourceIpamPoolId("sourceIpamPoolId")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Class and Description |
|---|---|
static class |
CfnIPAMPool.Builder
A fluent builder for
CfnIPAMPool. |
static interface |
CfnIPAMPool.ProvisionedCidrProperty
Example:
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnIPAMPool(software.constructs.Construct scope,
String id,
CfnIPAMPoolProps props)
Create a new `AWS::EC2::IPAMPool`.
|
protected |
CfnIPAMPool(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnIPAMPool(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAddressFamily()
`AWS::EC2::IPAMPool.AddressFamily`.
|
Number |
getAllocationDefaultNetmaskLength()
`AWS::EC2::IPAMPool.AllocationDefaultNetmaskLength`.
|
Number |
getAllocationMaxNetmaskLength()
`AWS::EC2::IPAMPool.AllocationMaxNetmaskLength`.
|
Number |
getAllocationMinNetmaskLength()
`AWS::EC2::IPAMPool.AllocationMinNetmaskLength`.
|
Object |
getAllocationResourceTags()
`AWS::EC2::IPAMPool.AllocationResourceTags`.
|
String |
getAttrArn() |
String |
getAttrIpamArn() |
String |
getAttrIpamPoolId() |
String |
getAttrIpamScopeArn() |
String |
getAttrIpamScopeType() |
Number |
getAttrPoolDepth() |
String |
getAttrState() |
String |
getAttrStateMessage() |
Object |
getAutoImport()
`AWS::EC2::IPAMPool.AutoImport`.
|
protected Map<String,Object> |
getCfnProperties() |
String |
getDescription()
`AWS::EC2::IPAMPool.Description`.
|
String |
getIpamScopeId()
`AWS::EC2::IPAMPool.IpamScopeId`.
|
String |
getLocale()
`AWS::EC2::IPAMPool.Locale`.
|
Object |
getProvisionedCidrs()
`AWS::EC2::IPAMPool.ProvisionedCidrs`.
|
Object |
getPubliclyAdvertisable()
`AWS::EC2::IPAMPool.PubliclyAdvertisable`.
|
String |
getSourceIpamPoolId()
`AWS::EC2::IPAMPool.SourceIpamPoolId`.
|
TagManager |
getTags()
`AWS::EC2::IPAMPool.Tags`.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setAddressFamily(String value)
`AWS::EC2::IPAMPool.AddressFamily`.
|
void |
setAllocationDefaultNetmaskLength(Number value)
`AWS::EC2::IPAMPool.AllocationDefaultNetmaskLength`.
|
void |
setAllocationMaxNetmaskLength(Number value)
`AWS::EC2::IPAMPool.AllocationMaxNetmaskLength`.
|
void |
setAllocationMinNetmaskLength(Number value)
`AWS::EC2::IPAMPool.AllocationMinNetmaskLength`.
|
void |
setAllocationResourceTags(IResolvable value)
`AWS::EC2::IPAMPool.AllocationResourceTags`.
|
void |
setAllocationResourceTags(List<Object> value)
`AWS::EC2::IPAMPool.AllocationResourceTags`.
|
void |
setAutoImport(Boolean value)
`AWS::EC2::IPAMPool.AutoImport`.
|
void |
setAutoImport(IResolvable value)
`AWS::EC2::IPAMPool.AutoImport`.
|
void |
setDescription(String value)
`AWS::EC2::IPAMPool.Description`.
|
void |
setIpamScopeId(String value)
`AWS::EC2::IPAMPool.IpamScopeId`.
|
void |
setLocale(String value)
`AWS::EC2::IPAMPool.Locale`.
|
void |
setProvisionedCidrs(IResolvable value)
`AWS::EC2::IPAMPool.ProvisionedCidrs`.
|
void |
setProvisionedCidrs(List<Object> value)
`AWS::EC2::IPAMPool.ProvisionedCidrs`.
|
void |
setPubliclyAdvertisable(Boolean value)
`AWS::EC2::IPAMPool.PubliclyAdvertisable`.
|
void |
setPubliclyAdvertisable(IResolvable value)
`AWS::EC2::IPAMPool.PubliclyAdvertisable`.
|
void |
setSourceIpamPoolId(String value)
`AWS::EC2::IPAMPool.SourceIpamPoolId`.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnIPAMPool(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnIPAMPool(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnIPAMPool(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnIPAMPoolProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAddressFamily()
@Stability(value=Stable)
public void setAddressFamily(@NotNull
String value)
@Stability(value=Stable) @Nullable public Number getAllocationDefaultNetmaskLength()
@Stability(value=Stable)
public void setAllocationDefaultNetmaskLength(@Nullable
Number value)
@Stability(value=Stable) @Nullable public Number getAllocationMaxNetmaskLength()
@Stability(value=Stable)
public void setAllocationMaxNetmaskLength(@Nullable
Number value)
@Stability(value=Stable) @Nullable public Number getAllocationMinNetmaskLength()
@Stability(value=Stable)
public void setAllocationMinNetmaskLength(@Nullable
Number value)
@Stability(value=Stable) @Nullable public Object getAllocationResourceTags()
@Stability(value=Stable)
public void setAllocationResourceTags(@Nullable
IResolvable value)
@Stability(value=Stable)
public void setAllocationResourceTags(@Nullable
List<Object> value)
@Stability(value=Stable) @NotNull public String getAttrArn()
@Stability(value=Stable) @NotNull public String getAttrIpamArn()
@Stability(value=Stable) @NotNull public String getAttrIpamPoolId()
@Stability(value=Stable) @NotNull public String getAttrIpamScopeArn()
@Stability(value=Stable) @NotNull public String getAttrIpamScopeType()
@Stability(value=Stable) @NotNull public Number getAttrPoolDepth()
@Stability(value=Stable) @NotNull public String getAttrState()
@Stability(value=Stable) @NotNull public String getAttrStateMessage()
@Stability(value=Stable) @Nullable public Object getAutoImport()
@Stability(value=Stable)
public void setAutoImport(@Nullable
Boolean value)
@Stability(value=Stable)
public void setAutoImport(@Nullable
IResolvable value)
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @Nullable public String getDescription()
@Stability(value=Stable)
public void setDescription(@Nullable
String value)
@Stability(value=Stable) @NotNull public String getIpamScopeId()
@Stability(value=Stable)
public void setIpamScopeId(@NotNull
String value)
@Stability(value=Stable) @Nullable public String getLocale()
@Stability(value=Stable)
public void setLocale(@Nullable
String value)
@Stability(value=Stable) @Nullable public Object getProvisionedCidrs()
@Stability(value=Stable)
public void setProvisionedCidrs(@Nullable
IResolvable value)
@Stability(value=Stable)
public void setProvisionedCidrs(@Nullable
List<Object> value)
@Stability(value=Stable) @Nullable public Object getPubliclyAdvertisable()
@Stability(value=Stable)
public void setPubliclyAdvertisable(@Nullable
Boolean value)
@Stability(value=Stable)
public void setPubliclyAdvertisable(@Nullable
IResolvable value)
@Stability(value=Stable) @Nullable public String getSourceIpamPoolId()
@Stability(value=Stable)
public void setSourceIpamPoolId(@Nullable
String value)
@Stability(value=Stable) @NotNull public TagManager getTags()
Copyright © 2021. All rights reserved.