Module Values.MetricAttributionSummarySource

Provides a summary of the properties of a metric attribution. For a complete listing, call the DescribeMetricAttribution.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the metric attribution.

    *)
  2. metricAttributionArn : Arn.t option;
    (*

    The metric attribution's Amazon Resource Name (ARN).

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

    The metric attribution's status.

    *)
  4. creationDateTime : Date.t option;
    (*

    The metric attribution's creation date time.

    *)
  5. lastUpdatedDateTime : Date.t option;
    (*

    The metric attribution's last updated date time.

    *)
  6. failureReason : FailureReason.t option;
    (*

    The metric attribution's failure reason.

    *)
}
Sourceval make : ?name:??? -> ?metricAttributionArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.t | `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