Skip to content

Get Pending Maintenance Action

docdbelastic_get_pending_maintenance_action R Documentation

Retrieves all maintenance actions that are pending

Description

Retrieves all maintenance actions that are pending.

Usage

docdbelastic_get_pending_maintenance_action(resourceArn)

Arguments

resourceArn

[required] Retrieves pending maintenance actions for a specific Amazon Resource Name (ARN).

Value

A list with the following syntax:

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

Request syntax

svc$get_pending_maintenance_action(
  resourceArn = "string"
)