Module Values.ImageRecipeSummarySource

A summary of an image recipe.

Sourcetype nonrec t = {
  1. arn : ImageBuilderArn.t option;
    (*

    The Amazon Resource Name (ARN) of the image recipe.

    *)
  2. name : ResourceName.t option;
    (*

    The name of the image recipe.

    *)
  3. platform : Platform.t option;
    (*

    The platform of the image recipe.

    *)
  4. owner : NonEmptyString.t option;
    (*

    The owner of the image recipe.

    *)
  5. parentImage : NonEmptyString.t option;
    (*

    The base image of the image recipe.

    *)
  6. dateCreated : DateTime.t option;
    (*

    The date on which this image recipe was created.

    *)
  7. tags : TagMap.t option;
    (*

    The tags of the image recipe.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?platform:??? -> ?owner:??? -> ?parentImage:??? -> ?dateCreated:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ImageBuilderArn.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