Module Values_0.AssociationOverviewSource

Information about the association.

Sourcetype nonrec t = {
  1. status : StatusName.t option;
    (*

    The status of the association. Status can be: Pending, Success, or Failed.

    *)
  2. detailedStatus : StatusName.t option;
    (*

    A detailed status of the association.

    *)
  3. associationStatusAggregatedCount : AssociationStatusAggregatedCount.t option;
    (*

    Returns the number of targets for the association status. For example, if you created an association with two managed nodes, and one of them was successful, this would return the count of managed nodes by status.

    *)
}
Sourceval make : ?status:??? -> ?detailedStatus:??? -> ?associationStatusAggregatedCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of StatusName.t ] * [> `Integer of InstanceCount.t ]) list | `String of StatusName.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