Class: Aws::SSM::Types::DocumentRequires
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DocumentRequires
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
An SSM document required by the current document.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the required SSM document.
-
#require_type ⇒ String
The document type of the required SSM document.
-
#version ⇒ String
The document version required by the current document.
-
#version_name ⇒ String
An optional field specifying the version of the artifact associated with the document.
Instance Attribute Details
#name ⇒ String
The name of the required SSM document. The name can be an Amazon Resource Name (ARN).
6848 6849 6850 6851 6852 6853 6854 6855 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6848 class DocumentRequires < Struct.new( :name, :version, :require_type, :version_name) SENSITIVE = [] include Aws::Structure end |
#require_type ⇒ String
The document type of the required SSM document.
6848 6849 6850 6851 6852 6853 6854 6855 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6848 class DocumentRequires < Struct.new( :name, :version, :require_type, :version_name) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The document version required by the current document.
6848 6849 6850 6851 6852 6853 6854 6855 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6848 class DocumentRequires < Struct.new( :name, :version, :require_type, :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, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.
6848 6849 6850 6851 6852 6853 6854 6855 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6848 class DocumentRequires < Struct.new( :name, :version, :require_type, :version_name) SENSITIVE = [] include Aws::Structure end |