Class ECRSourceOptions

Options for ECR sources.

Inheritance

ECRSourceOptions

Implements
Inherited Members
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ECRSourceOptions : IECRSourceOptions
Syntax (vb)
Public Class ECRSourceOptions Implements IECRSourceOptions
Examples
IRepository repository;

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

Synopsis

Constructors

Properties

ActionName

The action name used for this source in the CodePipeline.

ImageTag

The image tag that will be checked for changes.

Constructors

ECRSourceOptions()

Options for ECR sources.

public ECRSourceOptions()
Examples
IRepository repository;

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

Properties

ActionName

The action name used for this source in the CodePipeline.

public string? ActionName { get; set; }
Property Value

string

ImageTag

The image tag that will be checked for changes.

public string? ImageTag { get; set; }
Property Value

string

Implements