Class: Aws::Lambda::Types::ListLayerVersionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Note:

When making an API call, you may pass ListLayerVersionsRequest data as a hash:

{
  compatible_runtime: "nodejs", # accepts nodejs, nodejs4.3, nodejs6.10, nodejs8.10, java8, python2.7, python3.6, python3.7, dotnetcore1.0, dotnetcore2.0, dotnetcore2.1, nodejs4.3-edge, go1.x, ruby2.5, provided
  layer_name: "LayerName", # required
  marker: "String",
  max_items: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#compatible_runtimeString

A runtime identifier. For example, ‘go1.x`.

Returns:

  • (String)


2044
2045
2046
2047
2048
2049
2050
# File 'lib/aws-sdk-lambda/types.rb', line 2044

class ListLayerVersionsRequest < Struct.new(
  :compatible_runtime,
  :layer_name,
  :marker,
  :max_items)
  include Aws::Structure
end

#layer_nameString

The name or Amazon Resource Name (ARN) of the layer.

Returns:

  • (String)


2044
2045
2046
2047
2048
2049
2050
# File 'lib/aws-sdk-lambda/types.rb', line 2044

class ListLayerVersionsRequest < Struct.new(
  :compatible_runtime,
  :layer_name,
  :marker,
  :max_items)
  include Aws::Structure
end

#markerString

A pagination token returned by a previous call.

Returns:

  • (String)


2044
2045
2046
2047
2048
2049
2050
# File 'lib/aws-sdk-lambda/types.rb', line 2044

class ListLayerVersionsRequest < Struct.new(
  :compatible_runtime,
  :layer_name,
  :marker,
  :max_items)
  include Aws::Structure
end

#max_itemsInteger

The maximum number of versions to return.

Returns:

  • (Integer)


2044
2045
2046
2047
2048
2049
2050
# File 'lib/aws-sdk-lambda/types.rb', line 2044

class ListLayerVersionsRequest < Struct.new(
  :compatible_runtime,
  :layer_name,
  :marker,
  :max_items)
  include Aws::Structure
end