Skip to main content

active_names

Creates, updates, deletes, gets or lists an active_names resource.

Overview

Nameactive_names
TypeResource
Idaws.lightsail.active_names

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
active_namestringThe list of active names returned by the get active names request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_active_namesselectregionReturns the names of all active (not deleted) resources.

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 the names of all active (not deleted) resources.

SELECT
active_name
FROM aws.lightsail.active_names
WHERE region = '{{ region }}' -- required
;