Interface IECRSourceOptions

Options for ECR sources.

Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IECRSourceOptions
Syntax (vb)
Public Interface IECRSourceOptions
Examples
IRepository repository;

            CodePipelineSource.Ecr(repository, new ECRSourceOptions {
                ImageTag = "latest"
            });

Synopsis

Properties

ActionName

The action name used for this source in the CodePipeline.

ImageTag

The image tag that will be checked for changes.

Properties

ActionName

The action name used for this source in the CodePipeline.

string? ActionName { get; }
Property Value

string

ImageTag

The image tag that will be checked for changes.

string? ImageTag { get; }
Property Value

string