Class: Aws::SSM::Types::ListDocumentVersionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::ListDocumentVersionsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of items to return for this call.
-
#name ⇒ String
The name of the document.
-
#next_token ⇒ String
The token for the next set of items to return.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
11636 11637 11638 11639 11640 11641 11642 |
# File 'lib/aws-sdk-ssm/types.rb', line 11636 class ListDocumentVersionsRequest < Struct.new( :name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the document. You can specify an Amazon Resource Name (ARN).
11636 11637 11638 11639 11640 11641 11642 |
# File 'lib/aws-sdk-ssm/types.rb', line 11636 class ListDocumentVersionsRequest < Struct.new( :name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of items to return. (You received this token from a previous call.)
11636 11637 11638 11639 11640 11641 11642 |
# File 'lib/aws-sdk-ssm/types.rb', line 11636 class ListDocumentVersionsRequest < Struct.new( :name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |