LayerArgs

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

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

Constructors

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

Functions

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

Properties

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

The recovered arguments to the Dockerfile directive.

Link copied to clipboard
val directive: Output<LayerDirective>? = null

The recovered Dockerfile directive used to construct this layer.