Interface ECRSourceOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ECRSourceOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-24T02:42:46.078Z") @Stability(Stable) public interface ECRSourceOptions extends software.amazon.jsii.JsiiSerializable
Options for ECR sources.

Example:

 IRepository repository;
 CodePipelineSource.ecr(repository, ECRSourceOptions.builder()
         .imageTag("latest")
         .build());
 
  • Method Details

    • getActionName

      @Stability(Stable) @Nullable default String getActionName()
      The action name used for this source in the CodePipeline.

      Default: - The repository name

    • getImageTag

      @Stability(Stable) @Nullable default String getImageTag()
      The image tag that will be checked for changes.

      Default: latest

    • builder

      @Stability(Stable) static ECRSourceOptions.Builder builder()
      Returns:
      a ECRSourceOptions.Builder of ECRSourceOptions