Values.ContainerRecipeSummarySourceA summary of a container recipe
type nonrec t = {arn : ImageBuilderArn.t option;The Amazon Resource Name (ARN) of the container recipe.
*)containerType : ContainerType.t option;Specifies the type of container, such as "Docker".
*)name : ResourceName.t option;The name of the container recipe.
*)platform : Platform.t option;The system platform for the container, such as Windows or Linux.
*)owner : NonEmptyString.t option;The owner of the container recipe.
*)parentImage : NonEmptyString.t option;The base image for the container recipe.
*)dateCreated : DateTime.t option;The date when this container recipe was created.
*)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.
*)}val 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 ]