Class: Aws::APIGateway::Types::DeleteDomainNameRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#domain_nameString

The name of the DomainName resource to be deleted.

Returns:

  • (String)


1390
1391
1392
1393
# File 'lib/aws-sdk-apigateway/types.rb', line 1390

class DeleteDomainNameRequest < Struct.new(
  :domain_name)
  include Aws::Structure
end