Module Values.UpdateImagePipelineRequestSource

Updates an image pipeline. Image pipelines enable you to automate the creation and distribution of images. You must specify exactly one recipe for your image, using either a containerRecipeArn or an imageRecipeArn. UpdateImagePipeline does not support selective updates for the pipeline. You must specify all of the required properties in the update request, not just the properties that have changed.

Sourcetype nonrec t = {
  1. imagePipelineArn : ImagePipelineArn.t;
    (*

    The Amazon Resource Name (ARN) of the image pipeline that you want to update.

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

    The description of the image pipeline.

    *)
  3. imageRecipeArn : ImageRecipeArn.t option;
    (*

    The Amazon Resource Name (ARN) of the image recipe that will be used to configure images updated by this image pipeline.

    *)
  4. containerRecipeArn : ContainerRecipeArn.t option;
    (*

    The Amazon Resource Name (ARN) of the container pipeline to update.

    *)
  5. infrastructureConfigurationArn : InfrastructureConfigurationArn.t;
    (*

    The Amazon Resource Name (ARN) of the infrastructure configuration that Image Builder uses to build images that this image pipeline has updated.

    *)
  6. distributionConfigurationArn : DistributionConfigurationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the distribution configuration that Image Builder uses to configure and distribute images that this image pipeline has updated.

    *)
  7. imageTestsConfiguration : ImageTestsConfiguration.t option;
    (*

    The image test configuration of the image pipeline.

    *)
  8. enhancedImageMetadataEnabled : NullableBoolean.t option;
    (*

    Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.

    *)
  9. schedule : Schedule.t option;
    (*

    The schedule of the image pipeline.

    *)
  10. status : PipelineStatus.t option;
    (*

    The status of the image pipeline.

    *)
  11. clientToken : ClientToken.t;
    (*

    Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

    *)
  12. imageScanningConfiguration : ImageScanningConfiguration.t option;
    (*

    Contains settings for vulnerability scans.

    *)
  13. workflows : WorkflowConfigurationList.t option;
    (*

    Contains the workflows to run for the pipeline.

    *)
  14. loggingConfiguration : PipelineLoggingConfiguration.t option;
    (*

    Update logging configuration for the output image that's created when the pipeline runs.

    *)
  15. executionRole : RoleNameOrArn.t option;
    (*

    The name or Amazon Resource Name (ARN) for the IAM role you create that grants Image Builder access to perform workflow actions.

    *)
  16. imageTags : TagMap.t option;
    (*

    The tags to be applied to the images produced by this pipeline.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?imageRecipeArn:??? -> ?containerRecipeArn:??? -> ?distributionConfigurationArn:??? -> ?imageTestsConfiguration:??? -> ?enhancedImageMetadataEnabled:??? -> ?schedule:??? -> ?status:??? -> ?imageScanningConfiguration:??? -> ?workflows:??? -> ?loggingConfiguration:??? -> ?executionRole:??? -> ?imageTags:??? -> imagePipelineArn:ImagePipelineArn.t -> infrastructureConfigurationArn:InfrastructureConfigurationArn.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of WorkflowParameterValue.t ] list | `String of WorkflowParameterName.t ]) list ] list | `String of WorkflowVersionArnOrBuildVersionArn.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ImagePipelineArn.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of ImageTestsTimeoutMinutes.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of AutoDisableFailureCount.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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