aws-cdk-lib.aws_ec2.CfnIPAMProps

interface CfnIPAMProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnIPAMProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIPAMProps
Javasoftware.amazon.awscdk.services.ec2.CfnIPAMProps
Pythonaws_cdk.aws_ec2.CfnIPAMProps
TypeScript aws-cdk-lib » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnIPAMProps: ec2.CfnIPAMProps = {
  defaultResourceDiscoveryAssociationId: 'defaultResourceDiscoveryAssociationId',
  defaultResourceDiscoveryId: 'defaultResourceDiscoveryId',
  description: 'description',
  operatingRegions: [{
    regionName: 'regionName',
  }],
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
defaultResourceDiscoveryAssociationId?stringThe IPAM's default resource discovery association ID.
defaultResourceDiscoveryId?stringThe IPAM's default resource discovery ID.
description?stringThe description for the IPAM.
operatingRegions?IResolvable | IResolvable | IpamOperatingRegionProperty[]The operating Regions for an IPAM.
tags?CfnTag[]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 | IpamOperatingRegionProperty[] (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: CfnTag[] (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.