Class: Aws::APIGateway::Types::DeleteRestApiRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteRestApiRequest
- 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
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
1852 1853 1854 1855 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1852 class DeleteRestApiRequest < Struct.new( :rest_api_id) include Aws::Structure end |