Class: Aws::SSM::Types::DeleteDocumentRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#document_versionString

The version of the document that you want to delete. If not provided, all versions of the document are deleted.

Returns:

  • (String)


4017
4018
4019
4020
4021
4022
4023
4024
# File 'lib/aws-sdk-ssm/types.rb', line 4017

class DeleteDocumentRequest < Struct.new(
  :name,
  :document_version,
  :version_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#forceBoolean

Some SSM document types require that you specify a ‘Force` flag before you can delete the document. For example, you must specify a `Force` flag to delete a document of type `ApplicationConfigurationSchema`. You can restrict access to the `Force` flag in an Identity and Access Management (IAM) policy.

Returns:

  • (Boolean)


4017
4018
4019
4020
4021
4022
4023
4024
# File 'lib/aws-sdk-ssm/types.rb', line 4017

class DeleteDocumentRequest < Struct.new(
  :name,
  :document_version,
  :version_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the document.

Returns:

  • (String)


4017
4018
4019
4020
4021
4022
4023
4024
# File 'lib/aws-sdk-ssm/types.rb', line 4017

class DeleteDocumentRequest < Struct.new(
  :name,
  :document_version,
  :version_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end

#version_nameString

The version name of the document that you want to delete. If not provided, all versions of the document are deleted.

Returns:

  • (String)


4017
4018
4019
4020
4021
4022
4023
4024
# File 'lib/aws-sdk-ssm/types.rb', line 4017

class DeleteDocumentRequest < Struct.new(
  :name,
  :document_version,
  :version_name,
  :force)
  SENSITIVE = []
  include Aws::Structure
end