Skip to content

List Document Metadata History

ssm_list_document_metadata_history R Documentation

Amazon Web Services Systems Manager Change Manager is no longer open to new customers

Description

Amazon Web Services Systems Manager Change Manager is no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services Systems Manager Change Manager availability change.

Information about approval reviews for a version of a change template in Change Manager.

Usage

ssm_list_document_metadata_history(Name, DocumentVersion, Metadata,
  NextToken, MaxResults)

Arguments

Name

[required] The name of the change template.

DocumentVersion

The version of the change template.

Metadata

[required] The type of data for which details are being requested. Currently, the only supported value is DocumentReviews.

NextToken

The token for the next set of items to return. (You received this token from a previous call.)

MaxResults

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

Value

A list with the following syntax:

list(
  Name = "string",
  DocumentVersion = "string",
  Author = "string",
  Metadata = list(
    ReviewerResponse = list(
      list(
        CreateTime = as.POSIXct(
          "2015-01-01"
        ),
        UpdatedTime = as.POSIXct(
          "2015-01-01"
        ),
        ReviewStatus = "APPROVED"|"NOT_REVIEWED"|"PENDING"|"REJECTED",
        Comment = list(
          list(
            Type = "Comment",
            Content = "string"
          )
        ),
        Reviewer = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_document_metadata_history(
  Name = "string",
  DocumentVersion = "string",
  Metadata = "DocumentReviews",
  NextToken = "string",
  MaxResults = 123
)