aws-cdk-lib.pipelines.ECRSourceOptions

interface ECRSourceOptions

LanguageType name
.NETAmazon.CDK.Pipelines.ECRSourceOptions
Gogithub.com/aws/aws-cdk-go/awscdk/v2/pipelines#ECRSourceOptions
Javasoftware.amazon.awscdk.pipelines.ECRSourceOptions
Pythonaws_cdk.pipelines.ECRSourceOptions
TypeScript (source)aws-cdk-lib » pipelines » ECRSourceOptions

Options for ECR sources.

Example

declare const repository: ecr.IRepository;
pipelines.CodePipelineSource.ecr(repository, {
  imageTag: 'latest',
});

Properties

NameTypeDescription
actionName?stringThe action name used for this source in the CodePipeline.
imageTag?stringThe image tag that will be checked for changes.

actionName?

Type: string (optional, default: The repository name)

The action name used for this source in the CodePipeline.


imageTag?

Type: string (optional, default: latest)

The image tag that will be checked for changes.