Class: Aws::SSM::Types::DocumentRequires

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass DocumentRequires data as a hash:

{
  name: "DocumentARN", # required
  version: "DocumentVersion",
}

An SSM document required by the current document.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the required SSM document. The name can be an Amazon Resource Name (ARN).

Returns:

  • (String)


6247
6248
6249
6250
6251
# File 'lib/aws-sdk-ssm/types.rb', line 6247

class DocumentRequires < Struct.new(
  :name,
  :version)
  include Aws::Structure
end

#versionString

The document version required by the current document.

Returns:

  • (String)


6247
6248
6249
6250
6251
# File 'lib/aws-sdk-ssm/types.rb', line 6247

class DocumentRequires < Struct.new(
  :name,
  :version)
  include Aws::Structure
end