Module Values_0.AssociationExecutionTargetSource

Includes information about the specified association execution.

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.

    *)
  4. resourceId : AssociationResourceId.t option;
    (*

    The resource ID, for example, the managed node ID where the association ran.

    *)
  5. resourceType : AssociationResourceType.t option;
    (*

    The resource type, for example, EC2.

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

    The association execution status.

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

    Detailed information about the execution status.

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

    The date of the last execution.

    *)
  9. outputSource : OutputSource.t option;
    (*

    The location where the association details are saved.

    *)
}
Sourceval make : ?associationId:??? -> ?associationVersion:??? -> ?executionId:??? -> ?resourceId:??? -> ?resourceType:??? -> ?status:??? -> ?detailedStatus:??? -> ?lastExecutionDate:??? -> ?outputSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AssociationId.t | `Structure of (string * [> `String of OutputSourceId.t ]) 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