GetLayerVersionPlainArgs

data class GetLayerVersionPlainArgs(val compatibleArchitecture: String? = null, val compatibleRuntime: String? = null, val layerName: String, val version: Int? = null) : ConvertibleToJava<GetLayerVersionPlainArgs>

A collection of arguments for invoking getLayerVersion.

Constructors

Link copied to clipboard
constructor(compatibleArchitecture: String? = null, compatibleRuntime: String? = null, layerName: String, version: Int? = null)

Properties

Link copied to clipboard

Specific architecture the layer version could support. Conflicts with version. If specified, the latest available layer version supporting the provided architecture will be used.

Link copied to clipboard

Specific runtime the layer version must support. Conflicts with version. If specified, the latest available layer version supporting the provided runtime will be used.

Link copied to clipboard

Name of the lambda layer.

Link copied to clipboard
val version: Int? = null

Specific layer version. Conflicts with compatible_runtime and compatible_architecture. If omitted, the latest available layer version will be used.

Functions

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