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)


13030
13031
13032
13033
13034
# File 'lib/aws-sdk-ssm/types.rb', line 13030

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)


13030
13031
13032
13033
13034
# File 'lib/aws-sdk-ssm/types.rb', line 13030

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