Class: Aws::RDS::Types::IPRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::IPRange
- Includes:
- Structure
- Defined in:
- 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
The IP range.
-
#status ⇒ String
The status of the IP range.
Instance Attribute Details
#cidrip ⇒ String
The IP range.
17335 17336 17337 17338 17339 17340 |
# File 'lib/aws-sdk-rds/types.rb', line 17335 class IPRange < Struct.new( :status, :cidrip) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the IP range. Status can be “authorizing”, “authorized”, “revoking”, and “revoked”.
17335 17336 17337 17338 17339 17340 |
# File 'lib/aws-sdk-rds/types.rb', line 17335 class IPRange < Struct.new( :status, :cidrip) SENSITIVE = [] include Aws::Structure end |