Class: Aws::WorkDocs::Types::DeleteDocumentVersionRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[:authentication_token]

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_tokenString

Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.

Returns:

  • (String)


719
720
721
722
723
724
725
726
# File 'lib/aws-sdk-workdocs/types.rb', line 719

class DeleteDocumentVersionRequest < Struct.new(
  :authentication_token,
  :document_id,
  :version_id,
  :delete_prior_versions)
  SENSITIVE = [:authentication_token]
  include Aws::Structure
end

#delete_prior_versionsBoolean

Deletes all versions of a document prior to the current version.

Returns:

  • (Boolean)


719
720
721
722
723
724
725
726
# File 'lib/aws-sdk-workdocs/types.rb', line 719

class DeleteDocumentVersionRequest < Struct.new(
  :authentication_token,
  :document_id,
  :version_id,
  :delete_prior_versions)
  SENSITIVE = [:authentication_token]
  include Aws::Structure
end

#document_idString

The ID of the document associated with the version being deleted.

Returns:

  • (String)


719
720
721
722
723
724
725
726
# File 'lib/aws-sdk-workdocs/types.rb', line 719

class DeleteDocumentVersionRequest < Struct.new(
  :authentication_token,
  :document_id,
  :version_id,
  :delete_prior_versions)
  SENSITIVE = [:authentication_token]
  include Aws::Structure
end

#version_idString

The ID of the version being deleted.

Returns:

  • (String)


719
720
721
722
723
724
725
726
# File 'lib/aws-sdk-workdocs/types.rb', line 719

class DeleteDocumentVersionRequest < Struct.new(
  :authentication_token,
  :document_id,
  :version_id,
  :delete_prior_versions)
  SENSITIVE = [:authentication_token]
  include Aws::Structure
end