Skip to main content

setup_histories

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

Overview

Namesetup_histories
TypeResource
Idaws.lightsail.setup_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_page_tokenstringThe 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_historyarrayThe historical information that's returned.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;