Method: Aws::SSM::Types::Association#document_version

Defined in:
lib/aws-sdk-ssm/types.rb

#document_versionString

The version of the document used in the association. If you change a document version for a State Manager association, Systems Manager immediately runs the association unless you previously specifed the ‘apply-only-at-cron-interval` parameter.

State Manager doesn’t support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the ‘default` version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to `default`.

Returns:

  • (String)


383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
# File 'lib/aws-sdk-ssm/types.rb', line 383

class Association < Struct.new(
  :name,
  :instance_id,
  :association_id,
  :association_version,
  :document_version,
  :targets,
  :last_execution_date,
  :overview,
  :schedule_expression,
  :association_name,
  :schedule_offset,
  :duration,
  :target_maps)
  SENSITIVE = []
  include Aws::Structure
end