Module Values.ResourceSnapshotJobSummarySource

An object that contains a Resource Snapshot Job's subset of fields.

Sourcetype nonrec t = {
  1. id : ResourceSnapshotJobIdentifier.t option;
    (*

    The unique identifier for the resource snapshot job within the AWS Partner Central system. This ID is used for direct references to the job within the service.

    *)
  2. arn : ResourceSnapshotJobArn.t option;
    (*

    The Amazon Resource Name (ARN) for the resource snapshot job.

    *)
  3. engagementId : EngagementIdentifier.t option;
    (*

    The unique identifier of the Engagement.

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

    The current status of the snapshot job. Valid values: STOPPED: The job is not currently running. RUNNING: The job is actively executing.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?engagementId:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceSnapshotJobIdentifier.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