Class: Aws::RDS::Types::DeleteDBProxyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DeleteDBProxyRequest
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass DeleteDBProxyRequest data as a hash:
{
db_proxy_name: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_proxy_name ⇒ String
The name of the DB proxy to delete.
Instance Attribute Details
#db_proxy_name ⇒ String
The name of the DB proxy to delete.
9685 9686 9687 9688 9689 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 9685 class DeleteDBProxyRequest < Struct.new( :db_proxy_name) SENSITIVE = [] include Aws::Structure end |