ContainerImageAssetCacheOption

class aws_cdk.cloud_assembly_schema.ContainerImageAssetCacheOption(*, type, params=None)

Bases: object

Options for configuring the Docker cache backend.

Parameters:

Attributes

params

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:

declare const branch: string;

const params = {
  ref: `12345678.dkr.ecr.us-west-2.amazonaws.com/cache:${branch}`,
  mode: "max",
};
type

The type of cache to use.

Refer to https://docs.docker.com/build/cache/backends/ for full list of backends.

Default:
  • unspecified

Example:

'registry'