Interface CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnIPAMScope

@Stability(Stable) public static interface CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
 IpamScopeExternalAuthorityConfigurationProperty ipamScopeExternalAuthorityConfigurationProperty = IpamScopeExternalAuthorityConfigurationProperty.builder()
         .externalResourceIdentifier("externalResourceIdentifier")
         .ipamScopeExternalAuthorityType("ipamScopeExternalAuthorityType")
         .build();
 

See Also: