@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.556Z") @Stability(value=Stable) public interface TarballImageAssetProps extends software.amazon.jsii.JsiiSerializable
Example:
import software.amazon.awscdk.services.ecr.assets.TarballImageAsset;
TarballImageAsset asset = TarballImageAsset.Builder.create(this, "MyBuildImage")
.tarballFile("local-image.tar")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
TarballImageAssetProps.Builder
A builder for
TarballImageAssetProps |
static class |
TarballImageAssetProps.Jsii$Proxy
An implementation for
TarballImageAssetProps |
| Modifier and Type | Method and Description |
|---|---|
static TarballImageAssetProps.Builder |
builder() |
String |
getTarballFile()
Absolute path to the tarball.
|
@Stability(value=Stable) @NotNull String getTarballFile()
It is recommended to to use the script running directory (e.g. __dirname
in Node.js projects or dirname of __file__ in Python) if your tarball
is located as a resource inside your project.
@Stability(value=Stable) static TarballImageAssetProps.Builder builder()
TarballImageAssetProps.Builder of TarballImageAssetPropsCopyright © 2022. All rights reserved.