Class: Aws::APIGateway::Types::DeleteDomainNameRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteDomainNameRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteDomainNameRequest data as a hash:
{
domain_name: "String", # required
}
A request to delete the DomainName resource.
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the DomainName resource to be deleted.
Instance Attribute Details
#domain_name ⇒ String
The name of the DomainName resource to be deleted.
1390 1391 1392 1393 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1390 class DeleteDomainNameRequest < Struct.new( :domain_name) include Aws::Structure end |