Class: Aws::APIGateway::Types::GetDocumentationVersionRequest

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

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

Gets a documentation snapshot of an API.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#documentation_versionString

[Required] The version identifier of the to-be-retrieved documentation snapshot.

Returns:

  • (String)


3446
3447
3448
3449
3450
3451
# File 'lib/aws-sdk-apigateway/types.rb', line 3446

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

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


3446
3447
3448
3449
3450
3451
# File 'lib/aws-sdk-apigateway/types.rb', line 3446

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