@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.528Z") @Stability(value=Stable) public interface CodeDeployEcsContainerImageInput 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.*;
import software.amazon.awscdk.services.codepipeline.actions.*;
Artifact artifact;
CodeDeployEcsContainerImageInput codeDeployEcsContainerImageInput = CodeDeployEcsContainerImageInput.builder()
.input(artifact)
// the properties below are optional
.taskDefinitionPlaceholder("taskDefinitionPlaceholder")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CodeDeployEcsContainerImageInput.Builder
A builder for
CodeDeployEcsContainerImageInput |
static class |
CodeDeployEcsContainerImageInput.Jsii$Proxy
An implementation for
CodeDeployEcsContainerImageInput |
| Modifier and Type | Method and Description |
|---|---|
static CodeDeployEcsContainerImageInput.Builder |
builder() |
Artifact |
getInput()
The artifact that contains an `imageDetails.json` file with the image URI.
|
default String |
getTaskDefinitionPlaceholder()
The placeholder string in the ECS task definition template file that will be replaced with the image URI.
|
@Stability(value=Stable) @NotNull Artifact getInput()
The artifact's imageDetails.json file must be a JSON file containing an
ImageURI property. For example:
{ "ImageURI": "ACCOUNTID.dkr.ecr.us-west-2.amazonaws.com/dk-image-repo@sha256:example3" }
@Stability(value=Stable) @Nullable default String getTaskDefinitionPlaceholder()
The placeholder string must be surrounded by angle brackets in the template file.
For example, if the task definition template file contains a placeholder like
"image": "<PLACEHOLDER>", then the taskDefinitionPlaceholder value should
be PLACEHOLDER.
Default: IMAGE
@Stability(value=Stable) static CodeDeployEcsContainerImageInput.Builder builder()
Copyright © 2022. All rights reserved.