Skip to content

List Pending Maintenance Actions

docdbelastic_list_pending_maintenance_actions R Documentation

Retrieves a list of all maintenance actions that are pending

Description

Retrieves a list of all maintenance actions that are pending.

Usage

docdbelastic_list_pending_maintenance_actions(maxResults, nextToken)

Arguments

maxResults

The maximum number of results to include in the response. If more records exist than the specified maxResults value, a pagination token (marker) is included in the response so that the remaining results can be retrieved.

nextToken

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 maxResults.

Value

A list with the following syntax:

list(
  nextToken = "string",
  resourcePendingMaintenanceActions = list(
    list(
      pendingMaintenanceActionDetails = list(
        list(
          action = "string",
          autoAppliedAfterDate = "string",
          currentApplyDate = "string",
          description = "string",
          forcedApplyDate = "string",
          optInStatus = "string"
        )
      ),
      resourceArn = "string"
    )
  )
)

Request syntax

svc$list_pending_maintenance_actions(
  maxResults = 123,
  nextToken = "string"
)