Class: Aws::EC2::Types::Ipv6Range

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass Ipv6Range data as a hash:

{
  cidr_ipv_6: "String",
}

[EC2-VPC only] Describes an IPv6 range.

Instance Attribute Summary collapse

Instance Attribute Details

#cidr_ipv_6String

The IPv6 CIDR range. You can either specify a CIDR range or a source security group, not both. To specify a single IPv6 address, use the /128 prefix.

Returns:

  • (String)


15832
15833
15834
15835
# File 'lib/aws-sdk-ec2/types.rb', line 15832

class Ipv6Range < Struct.new(
  :cidr_ipv_6)
  include Aws::Structure
end