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

[Required] The name of the DomainName resource to be deleted.

Returns:

  • (String)


1731
1732
1733
1734
# File 'lib/aws-sdk-apigateway/types.rb', line 1731

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