interface IpamScopeExternalAuthorityConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIPAMScope_IpamScopeExternalAuthorityConfigurationProperty |
Java | software.amazon.awscdk.services.ec2.CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty |
Python | aws_cdk.aws_ec2.CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnIPAMScope » IpamScopeExternalAuthorityConfigurationProperty |
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.
In IPAM, an external authority is a third-party IP address management system that provides CIDR blocks when you provision address space for top-level IPAM pools. This allows you to use your existing IP management system to control which address ranges are allocated to AWS while using Amazon VPC IPAM to manage subnets within those ranges.
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 ipamScopeExternalAuthorityConfigurationProperty: ec2.CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty = {
externalResourceIdentifier: 'externalResourceIdentifier',
ipamScopeExternalAuthorityType: 'ipamScopeExternalAuthorityType',
};
Properties
| Name | Type | Description |
|---|---|---|
| external | string | The identifier for the external resource managing this scope. |
| ipam | string | The type of external authority managing this scope. |
externalResourceIdentifier
Type:
string
The identifier for the external resource managing this scope.
For Infoblox integrations, this is the Infoblox resource identifier in the format <version>.identity.account.<entity_realm>.<entity_id> .
ipamScopeExternalAuthorityType
Type:
string
The type of external authority managing this scope.
Currently supports Infoblox for integration with Infoblox Universal DDI.

.NET
Go
Java
Python
TypeScript