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.
5306 5307 5308 5309 5310 5311 5312 |
# File 'lib/aws-sdk-ssm/types.rb', line 5306 class DescribeDocumentRequest < Struct.new( :name, :document_version, :version_name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the SSM document.
<note markdown=“1”> If you’re calling a shared SSM document from a different Amazon Web Services account, ‘Name` is the full Amazon Resource Name (ARN) of the document.
</note>
5306 5307 5308 5309 5310 5311 5312 |
# File 'lib/aws-sdk-ssm/types.rb', line 5306 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.
5306 5307 5308 5309 5310 5311 5312 |
# File 'lib/aws-sdk-ssm/types.rb', line 5306 class DescribeDocumentRequest < Struct.new( :name, :document_version, :version_name) SENSITIVE = [] include Aws::Structure end |