document_metadata_histories
Creates, updates, deletes, gets or lists a document_metadata_histories resource.
Overview
| Name | document_metadata_histories |
| Type | Resource |
| Id | aws.ssm.document_metadata_histories |
Fields
The following fields are returned by SELECT queries:
- list_document_metadata_history
| Name | Datatype | Description |
|---|---|---|
author | string | The user ID of the person in the organization who requested the review of the change template. |
document_version | string | The version of the change template. (pattern: <code>([$]LATEST|[$]DEFAULT|^[1-9][0-9]*$)</code>) |
metadata | object | Information about the response to the change template approval request. |
name | string | The name of the change template. (pattern: <code>^[a-zA-Z0-9_-.]{3,128}$</code>) |
next_token | string | 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. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_document_metadata_history | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_document_metadata_history
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
;