Skip to main content

autonomous_database_wallet_details

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

Overview

Nameautonomous_database_wallet_details
TypeResource
Idaws.odb.autonomous_database_wallet_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
password_source_summaryobjectThe summary of the password source configuration for the Autonomous Database wallet.
statusstringThe current status of the Autonomous Database wallet. (ACTIVE, UPDATING)
time_rotatedstring (date-time)The date and time when the Autonomous Database wallet was last rotated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_autonomous_database_wallet_detailsselectregionGets the wallet details for the specified Autonomous Database.

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 wallet details for the specified Autonomous Database.

SELECT
password_source_summary,
status,
time_rotated
FROM aws.odb.autonomous_database_wallet_details
WHERE region = '{{ region }}' -- required
;