List Document Metadata History
| ssm_list_document_metadata_history | R Documentation |
Information about approval reviews for a version of a change template in Change Manager¶
Description¶
Information about approval reviews for a version of a change template in Change Manager.
Usage¶
Arguments¶
Name[required] The name of the change template.
DocumentVersionThe version of the change template.
Metadata[required] The type of data for which details are being requested. Currently, the only supported value is
DocumentReviews.NextTokenThe token for the next set of items to return. (You received this token from a previous call.)
MaxResultsThe 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"
)