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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The identifier for the external resource managing this scope.The type of external authority managing this scope.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExternalResourceIdentifier
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>.- See Also:
-
getIpamScopeExternalAuthorityType
The type of external authority managing this scope.Currently supports
Infobloxfor integration with Infoblox Universal DDI.- See Also:
-
builder
@Stability(Stable) static CfnIPAMScope.IpamScopeExternalAuthorityConfigurationProperty.Builder builder()
-