Interface DockerCacheOption
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DockerCacheOption.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:16.197Z")
@Stability(Stable)
public interface DockerCacheOption
extends software.amazon.jsii.JsiiSerializable
Options for configuring the Docker cache backend.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cloud_assembly_schema.*;
DockerCacheOption dockerCacheOption = DockerCacheOption.builder()
.type("type")
// the properties below are optional
.params(Map.of(
"paramsKey", "params"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDockerCacheOptionstatic final classAn implementation forDockerCacheOption -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of cache to use.Refer to https://docs.docker.com/build/cache/backends/ for full list of backends.
Default: - unspecified
Example:
"registry";
-
getParams
Any parameters to pass into the docker cache backend configuration.Refer to https://docs.docker.com/build/cache/backends/ for cache backend configuration.
Default: {} No options provided
Example:
String branch; Map<String, Object> params = Map.of( "ref", String.format("12345678.dkr.ecr.us-west-2.amazonaws.com/cache:%s", branch), "mode", "max"); -
builder
- Returns:
- a
DockerCacheOption.BuilderofDockerCacheOption
-