Module Values_2.ImageAncestryEntrySource

Information about a single AMI in the ancestry chain and its source (parent) AMI.

Sourcetype nonrec t = {
  1. creationDate : Values_0.MillisecondDateTime.t option;
    (*

    The date and time when this AMI was created.

    *)
  2. imageId : Values_0.ImageId.t option;
    (*

    The ID of this AMI.

    *)
  3. imageOwnerAlias : Values_0.String_.t option;
    (*

    The owner alias (amazon | aws-backup-vault | aws-marketplace ) of this AMI, if one is assigned. Otherwise, the value is null.

    *)
  4. sourceImageId : Values_0.ImageId.t option;
    (*

    The ID of the parent AMI.

    *)
  5. sourceImageRegion : Values_0.String_.t option;
    (*

    The Amazon Web Services Region of the parent AMI.

    *)
}
Sourceval make : ?creationDate:??? -> ?imageId:??? -> ?imageOwnerAlias:??? -> ?sourceImageId:??? -> ?sourceImageRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ImageId.t | `Timestamp of Values_0.MillisecondDateTime.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