Module Values.GetDashboardResponseSource

Returns the specified dashboard.

Sourcetype nonrec t = {
  1. dashboardArn : DashboardArn.t option;
    (*

    The ARN for the dashboard.

    *)
  2. type_ : DashboardType.t option;
    (*

    The type of dashboard.

    *)
  3. status : DashboardStatus.t option;
    (*

    The status of the dashboard.

    *)
  4. widgets : WidgetList.t option;
    (*

    An array of widgets for the dashboard.

    *)
  5. refreshSchedule : RefreshSchedule.t option;
    (*

    The refresh schedule for the dashboard, if configured.

    *)
  6. createdTimestamp : Date.t option;
    (*

    The timestamp that shows when the dashboard was created.

    *)
  7. updatedTimestamp : Date.t option;
    (*

    The timestamp that shows when the dashboard was last updated.

    *)
  8. lastRefreshId : RefreshId.t option;
    (*

    The ID of the last dashboard refresh.

    *)
  9. lastRefreshFailureReason : ErrorMessage.t option;
    (*

    Provides information about failures for the last scheduled refresh.

    *)
  10. terminationProtectionEnabled : TerminationProtectionEnabled.t option;
    (*

    Indicates whether termination protection is enabled for the dashboard.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `UnsupportedOperationException of UnsupportedOperationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?dashboardArn:??? -> ?type_:??? -> ?status:??? -> ?widgets:??? -> ?refreshSchedule:??? -> ?createdTimestamp:??? -> ?updatedTimestamp:??? -> ?lastRefreshId:??? -> ?lastRefreshFailureReason:??? -> ?terminationProtectionEnabled:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option | `UnsupportedOperationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option | `UnsupportedOperationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of TerminationProtectionEnabled.t | `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of QueryParameter.t ] list | `Map of ([> `String of ViewPropertiesKey.t ] * [> `String of ViewPropertiesValue.t ]) list | `String of QueryAlias.t ]) list ] list | `String of DashboardArn.t | `Structure of (string * [> `Enum of string | `String of TimeOfDay.t | `Structure of (string * [> `Enum of string | `Integer of RefreshScheduleFrequencyValue.t ]) list ]) list | `Timestamp of Date.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t