Skip to main content

pending_maintenance_actions

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

Overview

Namepending_maintenance_actions
TypeResource
Idaws.dms.pending_maintenance_actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
markerstringAn 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_actionsarrayThe pending maintenance action.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_pending_maintenance_actionsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;