Class: Aws::APIGateway::Types::DeleteRestApiRequest

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 DeleteRestApiRequest data as a hash:

{
  rest_api_id: "String", # required
}

Request to delete the specified API from your collection.

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)

1852
1853
1854
1855
# File 'lib/aws-sdk-apigateway/types.rb', line 1852

class DeleteRestApiRequest < Struct.new(
  :rest_api_id)
  include Aws::Structure
end