Module Values.ContainerRecipeSummarySource

A summary of a container recipe

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

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

    *)
  2. containerType : ContainerType.t option;
    (*

    Specifies the type of container, such as "Docker".

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

    The name of the container recipe.

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

    The system platform for the container, such as Windows or Linux.

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

    The owner of the container recipe.

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

    The base image for the container recipe.

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

    The date when this container recipe was created.

    *)
  8. instanceImage : NonEmptyString.t option;
    (*

    The base image for a container build and test instance. This can contain an AMI ID or it can specify an Amazon Web Services Systems Manager (SSM) Parameter Store Parameter, prefixed by ssm:, followed by the parameter name or ARN. If not specified, Image Builder uses the appropriate ECS-optimized AMI as a base image.

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

    Tags that are attached to the container recipe.

    *)
}
Sourceval make : ?arn:??? -> ?containerType:??? -> ?name:??? -> ?platform:??? -> ?owner:??? -> ?parentImage:??? -> ?dateCreated:??? -> ?instanceImage:??? -> ?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