Interface EcrBuildAndPublishVariables
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EcrBuildAndPublishVariables.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:37.024Z")
@Stability(Stable)
public interface EcrBuildAndPublishVariables
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codepipeline.actions.*;
EcrBuildAndPublishVariables ecrBuildAndPublishVariables = EcrBuildAndPublishVariables.builder()
.ecrImageDigestId("ecrImageDigestId")
.ecrRepositoryName("ecrRepositoryName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEcrBuildAndPublishVariablesstatic final classAn implementation forEcrBuildAndPublishVariables -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The sha256 digest of the image manifest.The name of the Amazon ECR repository where the image was pushed.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEcrImageDigestId
The sha256 digest of the image manifest. -
getEcrRepositoryName
The name of the Amazon ECR repository where the image was pushed. -
builder
-