interface ECRSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Pipelines.ECRSourceOptions |
Java | software.amazon.awscdk.pipelines.ECRSourceOptions |
Python | aws_cdk.pipelines.ECRSourceOptions |
TypeScript (source) | @aws-cdk/pipelines » ECRSourceOptions |
Options for ECR sources.
Example
declare const repository: ecr.IRepository;
pipelines.CodePipelineSource.ecr(repository, {
imageTag: 'latest',
});
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The action name used for this source in the CodePipeline. |
| image | string | The 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.

.NET
Java
Python
TypeScript (