Module Values.ImageRecipeSource

An image recipe.

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

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

    *)
  2. type_ : ImageType.t option;
    (*

    Specifies which type of image is created by the recipe - an AMI or a container image.

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

    The name of the image recipe.

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

    The description of the image recipe.

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

    The platform of the image recipe.

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

    The owner of the image recipe.

    *)
  7. version : VersionNumber.t option;
    (*

    The version of the image recipe.

    *)
  8. components : ComponentConfigurationList.t option;
    (*

    The components that are included in the image recipe. Recipes require a minimum of one build component, and can have a maximum of 20 build and test components in any combination.

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

    The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: AMI ID Image Builder image Amazon Resource Name (ARN) Amazon Web Services Systems Manager (SSM) Parameter Store Parameter, prefixed by ssm:, followed by the parameter name or ARN. Amazon Web Services Marketplace product ID

    *)
  10. blockDeviceMappings : InstanceBlockDeviceMappings.t option;
    (*

    The block device mappings to apply when creating images from this recipe.

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

    The date on which this image recipe was created.

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

    The tags of the image recipe.

    *)
  13. workingDirectory : NonEmptyString.t option;
    (*

    The working directory to be used during build and test workflows.

    *)
  14. additionalInstanceConfiguration : AdditionalInstanceConfiguration.t option;
    (*

    Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.

    *)
  15. amiTags : TagMap.t option;
    (*

    Tags that are applied to the AMI that Image Builder creates during the Build phase prior to image distribution.

    *)
}
Sourceval make : ?arn:??? -> ?type_:??? -> ?name:??? -> ?description:??? -> ?platform:??? -> ?owner:??? -> ?version:??? -> ?components:??? -> ?parentImage:??? -> ?blockDeviceMappings:??? -> ?dateCreated:??? -> ?tags:??? -> ?workingDirectory:??? -> ?additionalInstanceConfiguration:??? -> ?amiTags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of ComponentParameterValue.t ] list | `String of ComponentParameterName.t ]) list ] list | `String of ComponentVersionArnOrBuildVersionArn.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of EbsIopsInteger.t | `String of NonEmptyString.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ImageBuilderArn.t | `Structure of (string * [> `String of UserDataOverride.t | `Structure of (string * [> `Boolean of NullableBoolean.t ]) list ]) list ]) 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