Class: Aws::Lambda::Types::ListLayersRequest

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 ListLayersRequest 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
  marker: "String",
  max_items: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#compatible_runtimeString

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

Returns:

  • (String)


2093
2094
2095
2096
2097
2098
# File 'lib/aws-sdk-lambda/types.rb', line 2093

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

#markerString

A pagination token returned by a previous call.

Returns:

  • (String)


2093
2094
2095
2096
2097
2098
# File 'lib/aws-sdk-lambda/types.rb', line 2093

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

#max_itemsInteger

The maximum number of layers to return.

Returns:

  • (Integer)


2093
2094
2095
2096
2097
2098
# File 'lib/aws-sdk-lambda/types.rb', line 2093

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