Class: Aws::EC2::Types::CoipCidr
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CoipCidr
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Information about a customer-owned IP address range.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr ⇒ String
An address range in a customer-owned IP address space.
-
#coip_pool_id ⇒ String
The ID of the address pool.
-
#local_gateway_route_table_id ⇒ String
The ID of the local gateway route table.
Instance Attribute Details
#cidr ⇒ String
An address range in a customer-owned IP address space.
5909 5910 5911 5912 5913 5914 5915 |
# File 'lib/aws-sdk-ec2/types.rb', line 5909 class CoipCidr < Struct.new( :cidr, :coip_pool_id, :local_gateway_route_table_id) SENSITIVE = [] include Aws::Structure end |