LayerArgs

data class LayerArgs(val arguments: Output<String>? = null, val directive: Output<LayerDirective>) : ConvertibleToJava<LayerArgs>

Layer holds metadata specific to a layer of a Docker image.

Constructors

Link copied to clipboard
constructor(arguments: Output<String>? = null, directive: Output<LayerDirective>)

Properties

Link copied to clipboard
val arguments: Output<String>? = null

The recovered arguments to the Dockerfile directive.

Link copied to clipboard

The recovered Dockerfile directive used to construct this layer.

Functions

Link copied to clipboard
open override fun toJava(): LayerArgs