listLayerVersions (original) (raw)
Lists the versions of an Lambda layer. Versions that have been deleted aren't listed. Specify a runtime identifier to list only versions that indicate that they're compatible with that runtime. Specify a compatible architecture to include only layer versions that are compatible with that architecture.
Samples
fun main() {
//sampleStart
// The following example displays information about the versions for the layer named blank java lib
val resp = lambdaClient.listLayerVersions {
layerName = "blank-java-lib"
}
//sampleEnd
}