interface CfnIPAMProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIPAMProps |
Java | software.amazon.awscdk.services.ec2.CfnIPAMProps |
Python | aws_cdk.aws_ec2.CfnIPAMProps |
TypeScript | @aws-cdk/aws-ec2 » CfnIPAMProps |
Properties for defining a CfnIPAM
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const cfnIPAMProps: ec2.CfnIPAMProps = {
defaultResourceDiscoveryAssociationId: 'defaultResourceDiscoveryAssociationId',
defaultResourceDiscoveryId: 'defaultResourceDiscoveryId',
description: 'description',
operatingRegions: [{
regionName: 'regionName',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
default | string | The IPAM's default resource discovery association ID. |
default | string | The IPAM's default resource discovery ID. |
description? | string | The description for the IPAM. |
operating | IResolvable | IResolvable | Ipam [] | The operating Regions for an IPAM. |
tags? | Cfn [] | The key/value combination of a tag assigned to the resource. |
defaultResourceDiscoveryAssociationId?
Type:
string
(optional)
The IPAM's default resource discovery association ID.
defaultResourceDiscoveryId?
Type:
string
(optional)
The IPAM's default resource discovery ID.
description?
Type:
string
(optional)
The description for the IPAM.
operatingRegions?
Type:
IResolvable
|
IResolvable
|
Ipam
[]
(optional)
The operating Regions for an IPAM.
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 .
tags?
Type:
Cfn
[]
(optional)
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.