@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.536Z") @Stability(value=Stable) public interface EcrSourceVariables extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EcrSourceVariables.Builder
A builder for
EcrSourceVariables |
static class |
EcrSourceVariables.Jsii$Proxy
An implementation for
EcrSourceVariables |
| Modifier and Type | Method and Description |
|---|---|
static EcrSourceVariables.Builder |
builder() |
String |
getImageDigest()
The digest of the current image, in the form '
|
String |
getImageTag()
The Docker tag of the current image.
|
String |
getImageUri()
The full ECR Docker URI of the current image.
|
String |
getRegistryId()
The identifier of the registry.
|
String |
getRepositoryName()
The physical name of the repository that this action tracks.
|
@Stability(value=Stable) @NotNull String getImageDigest()
@Stability(value=Stable) @NotNull String getImageTag()
@Stability(value=Stable) @NotNull String getImageUri()
@Stability(value=Stable) @NotNull String getRegistryId()
In ECR, this is usually the ID of the AWS account owning it.
@Stability(value=Stable) @NotNull String getRepositoryName()
@Stability(value=Stable) static EcrSourceVariables.Builder builder()
EcrSourceVariables.Builder of EcrSourceVariablesCopyright © 2022. All rights reserved.