interface EcrBuildAndPublishVariables
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.EcrBuildAndPublishVariables |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#EcrBuildAndPublishVariables |
Java | software.amazon.awscdk.services.codepipeline.actions.EcrBuildAndPublishVariables |
Python | aws_cdk.aws_codepipeline_actions.EcrBuildAndPublishVariables |
TypeScript (source) | aws-cdk-lib » aws_codepipeline_actions » EcrBuildAndPublishVariables |
The CodePipeline variables emitted by the ECR build and publish 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 ecrBuildAndPublishVariables: codepipeline_actions.EcrBuildAndPublishVariables = {
ecrImageDigestId: 'ecrImageDigestId',
ecrRepositoryName: 'ecrRepositoryName',
};
Properties
| Name | Type | Description |
|---|---|---|
| ecr | string | The sha256 digest of the image manifest. |
| ecr | string | The name of the Amazon ECR repository where the image was pushed. |
ecrImageDigestId
Type:
string
The sha256 digest of the image manifest.
ecrRepositoryName
Type:
string
The name of the Amazon ECR repository where the image was pushed.

.NET
Go
Java
Python
TypeScript (