Class: Aws::SSM::Types::DescribeDocumentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DescribeDocumentRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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_version ⇒ String
The document version for which you want information. Can be a specific version or the default version.
5056 5057 5058 5059 5060 5061 5062 |
# File 'lib/aws-sdk-ssm/types.rb', line 5056 class DescribeDocumentRequest < Struct.new( :name, :document_version, :version_name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the SSM document.
5056 5057 5058 5059 5060 5061 5062 |
# File 'lib/aws-sdk-ssm/types.rb', line 5056 class DescribeDocumentRequest < Struct.new( :name, :document_version, :version_name) 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.
5056 5057 5058 5059 5060 5061 5062 |
# File 'lib/aws-sdk-ssm/types.rb', line 5056 class DescribeDocumentRequest < Struct.new( :name, :document_version, :version_name) SENSITIVE = [] include Aws::Structure end |