interface CfnIPAMScopeProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIPAMScopeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIPAMScopeProps |
Java | software.amazon.awscdk.services.ec2.CfnIPAMScopeProps |
Python | aws_cdk.aws_ec2.CfnIPAMScopeProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnIPAMScopeProps |
Properties for defining a CfnIPAMScope
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.html
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
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.