aws-cdk-lib.aws_codepipeline_actions.EcrSourceVariables

interface EcrSourceVariables

LanguageType name
.NETAmazon.CDK.AWS.CodePipeline.Actions.EcrSourceVariables
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#EcrSourceVariables
Javasoftware.amazon.awscdk.services.codepipeline.actions.EcrSourceVariables
Pythonaws_cdk.aws_codepipeline_actions.EcrSourceVariables
TypeScript (source)aws-cdk-lib » aws_codepipeline_actions » EcrSourceVariables

The CodePipeline variables emitted by the ECR source Action.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codepipeline_actions as codepipeline_actions } from 'aws-cdk-lib';
const ecrSourceVariables: codepipeline_actions.EcrSourceVariables = {
  imageDigest: 'imageDigest',
  imageTag: 'imageTag',
  imageUri: 'imageUri',
  registryId: 'registryId',
  repositoryName: 'repositoryName',
};

Properties

NameTypeDescription
imageDigeststringThe digest of the current image, in the form ':'.
imageTagstringThe Docker tag of the current image.
imageUristringThe full ECR Docker URI of the current image.
registryIdstringThe identifier of the registry.
repositoryNamestringThe physical name of the repository that this action tracks.

imageDigest

Type: string

The digest of the current image, in the form ':'.


imageTag

Type: string

The Docker tag of the current image.


imageUri

Type: string

The full ECR Docker URI of the current image.


registryId

Type: string

The identifier of the registry.

In ECR, this is usually the ID of the AWS account owning it.


repositoryName

Type: string

The physical name of the repository that this action tracks.