Module Values.ImageReplicationStatusSource

The status of the replication process for an image.

Sourcetype nonrec t = {
  1. region : Region.t option;
    (*

    The destination Region for the image replication.

    *)
  2. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry to which the image belongs.

    *)
  3. status : ReplicationStatus.t option;
    (*

    The image replication status.

    *)
  4. failureCode : ReplicationError.t option;
    (*

    The failure code for a replication that has failed.

    *)
}
Sourceval make : ?region:??? -> ?registryId:??? -> ?status:??? -> ?failureCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Region.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