Learn R Programming

paws.management (version 0.1.10)

ssm_update_document_metadata: Updates information related to approval reviews for a specific version of a document

Description

Updates information related to approval reviews for a specific version of a document.

Usage

ssm_update_document_metadata(Name, DocumentVersion, DocumentReviews)

Arguments

Name

[required] The name of the document for which a version is to be updated.

DocumentVersion

The version of a document to update.

DocumentReviews

[required] The document review details to update.

Request syntax

svc$update_document_metadata(
  Name = "string",
  DocumentVersion = "string",
  DocumentReviews = list(
    Action = "SendForReview"|"UpdateReview"|"Approve"|"Reject",
    Comment = list(
      list(
        Type = "Comment",
        Content = "string"
      )
    )
  )
)