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.
7260 7261 7262 7263 7264 7265 7266 |
# File 'lib/aws-sdk-redshift/types.rb', line 7260 class IPRange < Struct.new( :status, :cidrip, :tags) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the IP range, for example, “authorized”.
7260 7261 7262 7263 7264 7265 7266 |
# File 'lib/aws-sdk-redshift/types.rb', line 7260 class IPRange < Struct.new( :status, :cidrip, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags for the IP range.
7260 7261 7262 7263 7264 7265 7266 |
# File 'lib/aws-sdk-redshift/types.rb', line 7260 class IPRange < Struct.new( :status, :cidrip, :tags) SENSITIVE = [] include Aws::Structure end |