interface EcrSourceVariables
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.EcrSourceVariables |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#EcrSourceVariables |
Java | software.amazon.awscdk.services.codepipeline.actions.EcrSourceVariables |
Python | aws_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
Name | Type | Description |
---|---|---|
image | string | The digest of the current image, in the form ' |
image | string | The Docker tag of the current image. |
image | string | The full ECR Docker URI of the current image. |
registry | string | The identifier of the registry. |
repository | string | The 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.