Package software.amazon.awscdk.pipelines
Interface ECRSourceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ECRSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:52.641Z")
@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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forECRSourceOptionsstatic final classAn implementation forECRSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic ECRSourceOptions.Builderbuilder()default StringThe action name used for this source in the CodePipeline.default StringThe image tag that will be checked for changes.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionName
The action name used for this source in the CodePipeline.Default: - The repository name
-
getImageTag
The image tag that will be checked for changes.Default: latest
-
builder
- Returns:
- a
ECRSourceOptions.BuilderofECRSourceOptions
-