Class: Aws::APIGateway::Types::DeleteDocumentationVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteDocumentationVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteDocumentationVersionRequest data as a hash:
{
rest_api_id: "String", # required
documentation_version: "String", # required
}
Deletes an existing documentation version of an API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#documentation_version ⇒ String
[Required] The version identifier of a to-be-deleted documentation snapshot.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#documentation_version ⇒ String
[Required] The version identifier of a to-be-deleted documentation snapshot.
1785 1786 1787 1788 1789 1790 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1785 class DeleteDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
1785 1786 1787 1788 1789 1790 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1785 class DeleteDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version) SENSITIVE = [] include Aws::Structure end |