Class: Aws::APIGateway::Types::DeleteDocumentationPartRequest

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

{
  rest_api_id: "String", # required
  documentation_part_id: "String", # required
}

Deletes an existing documentation part of an API.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#documentation_part_idString

[Required] The identifier of the to-be-deleted documentation part.

Returns:

  • (String)


1750
1751
1752
1753
1754
1755
# File 'lib/aws-sdk-apigateway/types.rb', line 1750

class DeleteDocumentationPartRequest < Struct.new(
  :rest_api_id,
  :documentation_part_id)
  SENSITIVE = []
  include Aws::Structure
end

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


1750
1751
1752
1753
1754
1755
# File 'lib/aws-sdk-apigateway/types.rb', line 1750

class DeleteDocumentationPartRequest < Struct.new(
  :rest_api_id,
  :documentation_part_id)
  SENSITIVE = []
  include Aws::Structure
end