Get Dashboard
| cloudtrail_get_dashboard | R Documentation | 
Returns the specified dashboard¶
Description¶
Returns the specified dashboard.
Usage¶
cloudtrail_get_dashboard(DashboardId)
Arguments¶
| DashboardId | [required] The name or ARN for the dashboard. | 
Value¶
A list with the following syntax:
list(
  DashboardArn = "string",
  Type = "MANAGED"|"CUSTOM",
  Status = "CREATING"|"CREATED"|"UPDATING"|"UPDATED"|"DELETING",
  Widgets = list(
    list(
      QueryAlias = "string",
      QueryStatement = "string",
      QueryParameters = list(
        "string"
      ),
      ViewProperties = list(
        "string"
      )
    )
  ),
  RefreshSchedule = list(
    Frequency = list(
      Unit = "HOURS"|"DAYS",
      Value = 123
    ),
    Status = "ENABLED"|"DISABLED",
    TimeOfDay = "string"
  ),
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  UpdatedTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  LastRefreshId = "string",
  LastRefreshFailureReason = "string",
  TerminationProtectionEnabled = TRUE|FALSE
)
Request syntax¶
svc$get_dashboard(
  DashboardId = "string"
)