Class: Aws::EC2::Types::IpamScopeExternalAuthorityConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::IpamScopeExternalAuthorityConfiguration
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
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 Amazon Web Services while using Amazon VPC IPAM to manage subnets within those ranges.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#external_resource_identifier ⇒ String
The identifier for the external resource managing this scope.
-
#type ⇒ String
The type of external authority managing this scope.
Instance Attribute Details
#external_resource_identifier ⇒ 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>.
55034 55035 55036 55037 55038 55039 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55034 class IpamScopeExternalAuthorityConfiguration < Struct.new( :type, :external_resource_identifier) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of external authority managing this scope. Currently
supports Infoblox for integration with Infoblox Universal DDI.
55034 55035 55036 55037 55038 55039 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55034 class IpamScopeExternalAuthorityConfiguration < Struct.new( :type, :external_resource_identifier) SENSITIVE = [] include Aws::Structure end |