Class: Aws::SSM::Types::UpdateDocumentDefaultVersionRequest

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 UpdateDocumentDefaultVersionRequest data as a hash:

{
  name: "DocumentName", # required
  document_version: "DocumentVersionNumber", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#document_versionString

The version of a custom document that you want to set as the default version.

Returns:

  • (String)


15961
15962
15963
15964
15965
# File 'lib/aws-sdk-ssm/types.rb', line 15961

class UpdateDocumentDefaultVersionRequest < Struct.new(
  :name,
  :document_version)
  include Aws::Structure
end

#nameString

The name of a custom document that you want to set as the default version.

Returns:

  • (String)


15961
15962
15963
15964
15965
# File 'lib/aws-sdk-ssm/types.rb', line 15961

class UpdateDocumentDefaultVersionRequest < Struct.new(
  :name,
  :document_version)
  include Aws::Structure
end