Class: Aws::RDS::Types::DeleteDBSecurityGroupMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_security_group_nameString

The name of the DB security group to delete.

<note markdown=“1”> You can’t delete the default DB security group.

</note>

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”

Returns:

  • (String)


6290
6291
6292
6293
# File 'lib/aws-sdk-rds/types.rb', line 6290

class DeleteDBSecurityGroupMessage < Struct.new(
  :db_security_group_name)
  include Aws::Structure
end