Class: Aws::APIGateway::Types::DeleteDocumentationPartRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteDocumentationPartRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteDocumentationPartRequest data as a hash:
{
rest_api_id: "String", # required
documentation_part_id: "String", # required
}
Deletes an existing documentation part of an API.
Instance Attribute Summary collapse
-
#documentation_part_id ⇒ String
[Required] The identifier of the to-be-deleted documentation part.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#documentation_part_id ⇒ String
[Required] The identifier of the to-be-deleted documentation part.
1346 1347 1348 1349 1350 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1346 class DeleteDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id) include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
1346 1347 1348 1349 1350 |
# File 'lib/aws-sdk-apigateway/types.rb', line 1346 class DeleteDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id) include Aws::Structure end |