Interface EcrSourceVariables
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EcrSourceVariables.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.435Z")
@Stability(Stable)
public interface EcrSourceVariables
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.codepipeline.actions.*; EcrSourceVariables ecrSourceVariables = EcrSourceVariables.builder() .imageDigest("imageDigest") .imageTag("imageTag") .imageUri("imageUri") .registryId("registryId") .repositoryName("repositoryName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEcrSourceVariables
static final class
An implementation forEcrSourceVariables
-
Method Summary
Modifier and TypeMethodDescriptionstatic EcrSourceVariables.Builder
builder()
The digest of the current image, in the form ': '. The Docker tag of the current image.The full ECR Docker URI of the current image.The identifier of the registry.The physical name of the repository that this action tracks.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageDigest
The digest of the current image, in the form ': '. -
getImageTag
The Docker tag of the current image. -
getImageUri
The full ECR Docker URI of the current image. -
getRegistryId
The identifier of the registry.In ECR, this is usually the ID of the AWS account owning it.
-
getRepositoryName
The physical name of the repository that this action tracks. -
builder
- Returns:
- a
EcrSourceVariables.Builder
ofEcrSourceVariables
-