Skip to main content

baselines

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

Overview

Namebaselines
TypeResource
Idaws.controltower.baselines

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringA user-friendly name for the baseline.
arnstringThe baseline ARN. (pattern: <code>arn:[a-z-]+:controltower:[a-z0-9-]*:[0-9]{0,12}:baseline/[A-Z0-9]{16}</code>)
descriptionstringA description of the baseline.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_baselineselectregionRetrieve details about an existing Baseline resource by specifying its identifier. For usage examples, see the Amazon Web Services Control Tower User Guide .
list_baselinesselectregionReturns a summary list of all available baselines. For usage examples, see the Amazon Web Services Control Tower User Guide .

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

Retrieve details about an existing Baseline resource by specifying its identifier. For usage examples, see the Amazon Web Services Control Tower User Guide .

SELECT
name,
arn,
description
FROM aws.controltower.baselines
WHERE region = '{{ region }}' -- required
;