Module Values.GetDashboardOutputSource

Displays the details of the dashboard that you specify. To copy an existing dashboard, use GetDashboard, and then use the data returned within DashboardBody as the template for the new dashboard when you call PutDashboard to create the copy.

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

    The Amazon Resource Name (ARN) of the dashboard.

    *)
  2. dashboardBody : DashboardBody.t option;
    (*

    The detailed information about the dashboard, including what widgets are included and their location on the dashboard. For more information about the DashboardBody syntax, see Dashboard Body Structure and Syntax.

    *)
  3. dashboardName : DashboardName.t option;
    (*

    The name of the dashboard.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getDashboardResult : getDashboardResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `DashboardNotFoundError of DashboardNotFoundError.t
  2. | `InternalServiceFault of InternalServiceFault.t
  3. | `InvalidParameterValueException of InvalidParameterValueException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?dashboardArn:??? -> ?dashboardBody:??? -> ?dashboardName:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DashboardNotFoundError of DashboardNotFoundError.t | `InternalServiceFault of InternalServiceFault.t | `InvalidParameterValueException of InvalidParameterValueException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DashboardNotFoundError of DashboardNotFoundError.t | `InternalServiceFault of InternalServiceFault.t | `InvalidParameterValueException of InvalidParameterValueException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of DashboardArn.t ]) list ]) 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