pending_maintenance_actions
Creates, updates, deletes, gets or lists a pending_maintenance_actions resource.
Overview
| Name | pending_maintenance_actions |
| Type | Resource |
| Id | aws.dms.pending_maintenance_actions |
Fields
The following fields are returned by SELECT queries:
- describe_pending_maintenance_actions
| Name | Datatype | Description |
|---|---|---|
marker | string | An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. |
pending_maintenance_actions | array | The pending maintenance action. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_pending_maintenance_actions | select | region | Returns a list of upcoming maintenance events for replication instances in your account in the current Region. |
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
- describe_pending_maintenance_actions
Returns a list of upcoming maintenance events for replication instances in your account in the current Region.
SELECT
marker,
pending_maintenance_actions
FROM aws.dms.pending_maintenance_actions
WHERE region = '{{ region }}' -- required
;