Class: Aws::APIGateway::Types::GetDocumentationVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetDocumentationVersionRequest
- 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
-
#documentation_version ⇒ String
[Required] The version identifier of the to-be-retrieved 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 the to-be-retrieved documentation snapshot.
3423 3424 3425 3426 3427 3428 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3423 class GetDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
3423 3424 3425 3426 3427 3428 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3423 class GetDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version) SENSITIVE = [] include Aws::Structure end |