Module Values.LifecycleExecutionSource

Contains metadata from a runtime instance of a lifecycle policy.

Sourcetype nonrec t = {
  1. lifecycleExecutionId : LifecycleExecutionId.t option;
    (*

    Identifies the lifecycle policy runtime instance.

    *)
  2. lifecyclePolicyArn : LifecyclePolicyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the lifecycle policy that ran.

    *)
  3. resourcesImpactedSummary : LifecycleExecutionResourcesImpactedSummary.t option;
    (*

    Contains information about associated resources that are identified for action by the runtime instance of the lifecycle policy.

    *)
  4. state : LifecycleExecutionState.t option;
    (*

    Runtime state that reports if the policy action ran successfully, failed, or was skipped.

    *)
  5. startTime : DateTimeTimestamp.t option;
    (*

    The timestamp when the lifecycle runtime instance started.

    *)
  6. endTime : DateTimeTimestamp.t option;
    (*

    The timestamp when the lifecycle runtime instance completed.

    *)
}
Sourceval make : ?lifecycleExecutionId:??? -> ?lifecyclePolicyArn:??? -> ?resourcesImpactedSummary:??? -> ?state:??? -> ?startTime:??? -> ?endTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LifecycleExecutionId.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of NonEmptyString.t ]) list | `Timestamp of DateTimeTimestamp.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