Skip to main content

document_metadata_histories

Creates, updates, deletes, gets or lists a document_metadata_histories resource.

Overview

Namedocument_metadata_histories
TypeResource
Idaws.ssm.document_metadata_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
authorstringThe user ID of the person in the organization who requested the review of the change template.
document_versionstringThe version of the change template. (pattern: <code>([$]LATEST|[$]DEFAULT|^[1-9][0-9]*$)</code>)
metadataobjectInformation about the response to the change template approval request.
namestringThe name of the change template. (pattern: <code>^[a-zA-Z0-9_-.]{3,128}$</code>)
next_tokenstringThe 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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_document_metadata_historyselectregionAmazon 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
author,
document_version,
metadata,
name,
next_token
FROM aws.ssm.document_metadata_histories
WHERE region = '{{ region }}' -- required
;