setup_histories
Creates, updates, deletes, gets or lists a setup_histories resource.
Overview
| Name | setup_histories |
| Type | Resource |
| Id | aws.lightsail.setup_histories |
Fields
The following fields are returned by SELECT queries:
- get_setup_history
| Name | Datatype | Description |
|---|---|---|
next_page_token | string | The token to advance to the next page of results from your request. A next page token is not returned if there are no more results to display. To get the next page of results, perform another GetSetupHistory request and specify the next page token using the pageToken parameter. (pattern: <code>^[A-Za-z0-9+/=]+$</code>) |
setup_history | array | The historical information that's returned. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_setup_history | select | region | Returns detailed information for five of the most recent SetupInstanceHttps requests that were ran on the target instance. |
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
- get_setup_history
Returns detailed information for five of the most recent SetupInstanceHttps requests that were ran on the target instance.
SELECT
next_page_token,
setup_history
FROM aws.lightsail.setup_histories
WHERE region = '{{ region }}' -- required
;