interface ContainerImageAssetCacheOption
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.CloudAssembly.Schema.ContainerImageAssetCacheOption | 
|  Java | software.amazon.awscdk.cloudassembly.schema.ContainerImageAssetCacheOption | 
|  Python | aws_cdk.cloud_assembly_schema.ContainerImageAssetCacheOption | 
|  TypeScript | @aws-cdk/cloud-assembly-schema»ContainerImageAssetCacheOption | 
Options for configuring the Docker cache backend.
Properties
| Name | Type | Description | 
|---|---|---|
| type | string | The type of cache to use. | 
| params? | { [string]: string } | Any parameters to pass into the docker cache backend configuration. | 
type
Type:
string
The type of cache to use.
Refer to https://docs.docker.com/build/cache/backends/ for full list of backends. Example
'registry'
params?
Type:
{ [string]: string }
(optional, default: {} No options provided)
Any parameters to pass into the docker cache backend configuration.
Refer to https://docs.docker.com/build/cache/backends/ for cache backend configuration. Example
declare const branch: string;
const params = {
  ref: `12345678.dkr.ecr.us-west-2.amazonaws.com/cache:${branch}`,
  mode: "max",
};
