Information about approval reviews for a version of an SSM document.
ssm_list_document_metadata_history(Name, DocumentVersion, Metadata,
NextToken, MaxResults)
[required] The name of the document.
The version of the document.
[required] The type of data for which details are being requested. Currently, the
only supported value is DocumentReviews
.
The token for the next set of items to return. (You received this token from a previous call.)
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.
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" )
svc$list_document_metadata_history( Name = "string", DocumentVersion = "string", Metadata = "DocumentReviews", NextToken = "string", MaxResults = 123 )