Class: Aws::RDS::Types::IPRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::IPRange
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
This data type is used as a response element in the
DescribeDBSecurityGroups
action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidrip ⇒ String
Specifies the IP range.
-
#status ⇒ String
Specifies the status of the IP range.
Instance Attribute Details
#cidrip ⇒ String
Specifies the IP range.
13778 13779 13780 13781 13782 13783 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 13778 class IPRange < Struct.new( :status, :cidrip) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Specifies the status of the IP range. Status can be "authorizing", "authorized", "revoking", and "revoked".
13778 13779 13780 13781 13782 13783 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 13778 class IPRange < Struct.new( :status, :cidrip) SENSITIVE = [] include Aws::Structure end |