Module Values.ImagePipelineSource

Details of an image pipeline.

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

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

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

    The name of the image pipeline.

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

    The description of the image pipeline.

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

    The platform of the image pipeline.

    *)
  5. 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.

    *)
  6. imageRecipeArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.

    *)
  7. containerRecipeArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the container recipe that is used for this pipeline.

    *)
  8. infrastructureConfigurationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline.

    *)
  9. distributionConfigurationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline.

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

    The image tests configuration of the image pipeline.

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

    The schedule of the image pipeline.

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

    The status of the image pipeline.

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

    The date on which this image pipeline was created.

    *)
  14. dateUpdated : DateTime.t option;
    (*

    The date on which this image pipeline was last updated.

    *)
  15. dateLastRun : DateTime.t option;
    (*

    This is no longer supported, and does not return a value.

    *)
  16. lastRunStatus : ImageStatus.t option;
    (*

    The status of the last image that this pipeline built, such as BUILDING, TESTING, FAILED, or AVAILABLE.

    *)
  17. dateNextRun : DateTime.t option;
    (*

    The next date when the pipeline is scheduled to run.

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

    The tags of this image pipeline.

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

    Contains settings for vulnerability scans.

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

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

    *)
  21. 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.

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

    Contains the workflows that run for the image pipeline.

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

    Defines logging configuration for the output image.

    *)
  24. consecutiveFailures : ConsecutiveFailures.t option;
    (*

    Image Builder tracks the number of consecutive failures for scheduled pipeline executions and takes one of the following actions each time it runs on a schedule: If the pipeline execution is successful, the number of consecutive failures resets to zero. If the pipeline execution fails, Image Builder increments the number of consecutive failures. If the failure count exceeds the limit defined in the AutoDisablePolicy, Image Builder disables the pipeline. The consecutive failure count is also reset to zero under the following conditions: The pipeline runs manually and succeeds. The pipeline configuration is updated. If the pipeline runs manually and fails, the count remains the same. The next scheduled run continues to increment where it left off before.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?description:??? -> ?platform:??? -> ?enhancedImageMetadataEnabled:??? -> ?imageRecipeArn:??? -> ?containerRecipeArn:??? -> ?infrastructureConfigurationArn:??? -> ?distributionConfigurationArn:??? -> ?imageTestsConfiguration:??? -> ?schedule:??? -> ?status:??? -> ?dateCreated:??? -> ?dateUpdated:??? -> ?dateLastRun:??? -> ?lastRunStatus:??? -> ?dateNextRun:??? -> ?tags:??? -> ?imageScanningConfiguration:??? -> ?imageTags:??? -> ?executionRole:??? -> ?workflows:??? -> ?loggingConfiguration:??? -> ?consecutiveFailures:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of ConsecutiveFailures.t | `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 ImageBuilderArn.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