Module Values_0.AssociationExecutionSource

Includes information about the specified association.

Sourcetype nonrec t = {
  1. associationId : AssociationId.t option;
    (*

    The association ID.

    *)
  2. associationVersion : AssociationVersion.t option;
    (*

    The association version.

    *)
  3. executionId : AssociationExecutionId.t option;
    (*

    The execution ID for the association.

    *)
  4. status : StatusName.t option;
    (*

    The status of the association execution.

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

    Detailed status information about the execution.

    *)
  6. createdTime : DateTime.t option;
    (*

    The time the execution started.

    *)
  7. lastExecutionDate : DateTime.t option;
    (*

    The date of the last execution.

    *)
  8. resourceCountByStatus : ResourceCountByStatus.t option;
    (*

    An aggregate status of the resources in the execution based on the status type.

    *)
  9. alarmConfiguration : AlarmConfiguration.t option;
  10. triggeredAlarms : AlarmStateInformationList.t option;
    (*

    The CloudWatch alarms that were invoked by the association.

    *)
}
Sourceval make : ?associationId:??? -> ?associationVersion:??? -> ?executionId:??? -> ?status:??? -> ?detailedStatus:??? -> ?createdTime:??? -> ?lastExecutionDate:??? -> ?resourceCountByStatus:??? -> ?alarmConfiguration:??? -> ?triggeredAlarms:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of AlarmName.t ]) list ] list | `String of AssociationId.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of AlarmName.t ]) list ] list ]) list | `Timestamp of DateTime.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