autonomous_database_wallet_details
Creates, updates, deletes, gets or lists an autonomous_database_wallet_details resource.
Overview
| Name | autonomous_database_wallet_details |
| Type | Resource |
| Id | aws.odb.autonomous_database_wallet_details |
Fields
The following fields are returned by SELECT queries:
- get_autonomous_database_wallet_details
| Name | Datatype | Description |
|---|---|---|
password_source_summary | object | The summary of the password source configuration for the Autonomous Database wallet. |
status | string | The current status of the Autonomous Database wallet. (ACTIVE, UPDATING) |
time_rotated | string (date-time) | The date and time when the Autonomous Database wallet was last rotated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_autonomous_database_wallet_details | select | region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_autonomous_database_wallet_details
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
;