aws-cdk-lib.aws_ec2.CfnIPAMScopeProps

interface CfnIPAMScopeProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnIPAMScopeProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIPAMScopeProps
Javasoftware.amazon.awscdk.services.ec2.CfnIPAMScopeProps
Pythonaws_cdk.aws_ec2.CfnIPAMScopeProps
TypeScript aws-cdk-lib » aws_ec2 » CfnIPAMScopeProps

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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnIPAMScopeProps: ec2.CfnIPAMScopeProps = {
  ipamId: 'ipamId',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
ipamIdstringThe ID of the IPAM for which you're creating this scope.
description?stringThe description of the scope.
tags?CfnTag[]The key/value combination of a tag assigned to the resource.

ipamId

Type: string

The ID of the IPAM for which you're creating this scope.


description?

Type: string (optional)

The description of the scope.


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.