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',
externalAuthorityConfiguration: {
externalResourceIdentifier: 'externalResourceIdentifier',
ipamScopeExternalAuthorityType: 'ipamScopeExternalAuthorityType',
},
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. |
| external | IResolvable | Ipam | The configuration that links an Amazon VPC IPAM scope to an external authority system. |
| 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.
externalAuthorityConfiguration?
Type:
IResolvable | Ipam
(optional)
The configuration that links an Amazon VPC IPAM scope to an external authority system.
It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.
For more information, see Integrate VPC IPAM with Infoblox infrastructure 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.

.NET
Go
Java
Python
TypeScript