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.
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.
4327 4328 4329 4330 4331 4332 |
# File 'lib/aws-sdk-redshift/types.rb', line 4327 class IPRange < Struct.new( :status, :cidrip, :tags) include Aws::Structure end |
#status ⇒ String
The status of the IP range, for example, “authorized”.
4327 4328 4329 4330 4331 4332 |
# File 'lib/aws-sdk-redshift/types.rb', line 4327 class IPRange < Struct.new( :status, :cidrip, :tags) include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags for the IP range.
4327 4328 4329 4330 4331 4332 |
# File 'lib/aws-sdk-redshift/types.rb', line 4327 class IPRange < Struct.new( :status, :cidrip, :tags) include Aws::Structure end |