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",
  description: "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 length.

Returns:

  • (String)


23469
23470
23471
23472
23473
# File 'lib/aws-sdk-ec2/types.rb', line 23469

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

#descriptionString

A description for the security group rule that references this IPv6 address range.

Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@+=;{\}!$*

Returns:

  • (String)


23469
23470
23471
23472
23473
# File 'lib/aws-sdk-ec2/types.rb', line 23469

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