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).
| 7280 7281 7282 7283 7284 7285 7286 7287 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7280 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.
| 7280 7281 7282 7283 7284 7285 7286 7287 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7280 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.
| 7280 7281 7282 7283 7284 7285 7286 7287 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7280 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, 12.6. This value is unique across all versions of a document, and can't be changed.
| 7280 7281 7282 7283 7284 7285 7286 7287 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 7280 class DocumentRequires < Struct.new( :name, :version, :require_type, :version_name) SENSITIVE = [] include Aws::Structure end |