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

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

Overview

Describes an IPv6 address range.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cidr_ipv_6String

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

Amazon Web Services canonicalizes IPv4 and IPv6 CIDRs. For example, if you specify 100.68.0.18/18 for the CIDR block, Amazon Web Services canonicalizes the CIDR block to 100.68.0.0/18. Any subsequent DescribeSecurityGroups and DescribeSecurityGroupRules calls will return the canonicalized form of the CIDR block. Additionally, if you attempt to add another rule with the non-canonical form of the CIDR (such as 100.68.0.18/18) and there is already a rule for the canonicalized form of the CIDR block (such as 100.68.0.0/18), the API throws an duplicate rule error.

Returns:

  • (String)

48363
48364
48365
48366
48367
48368
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 48363

class Ipv6Range < Struct.new(
  :description,
  :cidr_ipv_6)
  SENSITIVE = []
  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)

48363
48364
48365
48366
48367
48368
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 48363

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