interface CfnIPAMScopeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIPAMScopeProps |
Java | software.amazon.awscdk.services.ec2.CfnIPAMScopeProps |
Python | aws_cdk.aws_ec2.CfnIPAMScopeProps |
TypeScript | @aws-cdk/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 * as ec2 from '@aws-cdk/aws-ec2';
const cfnIPAMScopeProps: ec2.CfnIPAMScopeProps = {
ipamId: 'ipamId',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| ipam | string | The ID of the IPAM for which you're creating this scope. |
| description? | string | The description of the scope. |
| tags? | Cfn[] | 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:
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.

.NET
Java
Python
TypeScript