Class: Aws::RDS::Types::DeleteDBSecurityGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DeleteDBSecurityGroupMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass DeleteDBSecurityGroupMessage data as a hash:
{
db_security_group_name: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_security_group_name ⇒ String
The name of the DB security group to delete.
Instance Attribute Details
#db_security_group_name ⇒ String
The name of the DB security group to delete.
Constraints:
Must be 1 to 255 letters, numbers, or hyphens.
First character must be a letter
Can't end with a hyphen or contain two consecutive hyphens
Must not be "Default"
9731 9732 9733 9734 9735 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 9731 class DeleteDBSecurityGroupMessage < Struct.new( :db_security_group_name) SENSITIVE = [] include Aws::Structure end |