Skip to main content

databases

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

Overview

Namedatabases
TypeResource
Idaws.ssm_sap.databases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
databaseobjectThe SAP HANA database of an application registered with AWS Systems Manager for SAP.
tagsobjectThe tags of a database.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_databaseselectregionGets the SAP HANA database of an application registered with AWS Systems Manager for SAP.
list_databasesselectregionLists the SAP HANA databases of an application registered with AWS Systems Manager for SAP.

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

Gets the SAP HANA database of an application registered with AWS Systems Manager for SAP.

SELECT
database,
tags
FROM aws.ssm_sap.databases
WHERE region = '{{ region }}' -- required
;