Class: Aws::Redshift::Types::IPRange
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Redshift::Types::IPRange
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-redshift/types.rb
 
Overview
Describes an IP range used in a security group.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #cidrip  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IP range in Classless Inter-Domain Routing (CIDR) notation.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the IP range, for example, “authorized”.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of tags for the IP range.
 
Instance Attribute Details
#cidrip ⇒ String
The IP range in Classless Inter-Domain Routing (CIDR) notation.
      7140 7141 7142 7143 7144 7145 7146  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 7140 class IPRange < Struct.new( :status, :cidrip, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the IP range, for example, “authorized”.
      7140 7141 7142 7143 7144 7145 7146  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 7140 class IPRange < Struct.new( :status, :cidrip, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
The list of tags for the IP range.
      7140 7141 7142 7143 7144 7145 7146  | 
    
      # File 'lib/aws-sdk-redshift/types.rb', line 7140 class IPRange < Struct.new( :status, :cidrip, :tags) SENSITIVE = [] include Aws::Structure end  |