interface CfnIPAMScopeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnIPAMScopeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnIPAMScopeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnIPAMScopeMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMScopeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnIPAMScopeMixinProps |
Properties for CfnIPAMScopePropsMixin.
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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnIPAMScopeMixinProps: ec2_mixins.CfnIPAMScopeMixinProps = {
description: 'description',
externalAuthorityConfiguration: {
externalResourceIdentifier: 'externalResourceIdentifier',
ipamScopeExternalAuthorityType: 'ipamScopeExternalAuthorityType',
},
ipamId: 'ipamId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the scope. |
| external | IResolvable | Ipam | The configuration that links an Amazon VPC IPAM scope to an external authority system. |
| ipam | string | The ID of the IPAM for which you're creating this scope. |
| tags? | Cfn[] | The key/value combination of a tag assigned to the resource. |
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 .
ipamId?
Type:
string
(optional)
The ID of the IPAM for which you're creating this 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
Go
Java
Python
TypeScript