Class: Aws::SSM::Types::GetDocumentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::GetDocumentRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#document_format ⇒ String
Returns the document in the specified format.
-
#document_version ⇒ String
The document version for which you want information.
-
#name ⇒ String
The name of the SSM document.
-
#version_name ⇒ String
An optional field specifying the version of the artifact associated with the document.
Instance Attribute Details
#document_format ⇒ String
Returns the document in the specified format. The document format can be either JSON or YAML. JSON is the default format.
7945 7946 7947 7948 7949 7950 7951 7952 |
# File 'lib/aws-sdk-ssm/types.rb', line 7945 class GetDocumentRequest < Struct.new( :name, :version_name, :document_version, :document_format) SENSITIVE = [] include Aws::Structure end |
#document_version ⇒ String
The document version for which you want information.
7945 7946 7947 7948 7949 7950 7951 7952 |
# File 'lib/aws-sdk-ssm/types.rb', line 7945 class GetDocumentRequest < Struct.new( :name, :version_name, :document_version, :document_format) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the SSM document.
7945 7946 7947 7948 7949 7950 7951 7952 |
# File 'lib/aws-sdk-ssm/types.rb', line 7945 class GetDocumentRequest < Struct.new( :name, :version_name, :document_version, :document_format) SENSITIVE = [] include Aws::Structure end |
#version_name ⇒ String
An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document and can’t be changed.
7945 7946 7947 7948 7949 7950 7951 7952 |
# File 'lib/aws-sdk-ssm/types.rb', line 7945 class GetDocumentRequest < Struct.new( :name, :version_name, :document_version, :document_format) SENSITIVE = [] include Aws::Structure end |