Class: Aws::EC2::Types::Ipv6Range
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::Ipv6Range
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes an IPv6 address range.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #cidr_ipv_6  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IPv6 address range.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description for the security group rule that references this IPv6 address range.
 
Instance Attribute Details
#cidr_ipv_6 ⇒ String
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.
      44286 44287 44288 44289 44290 44291  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44286 class Ipv6Range < Struct.new( :cidr_ipv_6, :description) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
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 ._-:/()#,@+=&;{\}!$*
      44286 44287 44288 44289 44290 44291  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44286 class Ipv6Range < Struct.new( :cidr_ipv_6, :description) SENSITIVE = [] include Aws::Structure end  |