The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::Lambda::ListLayers - Arguments for method ListLayers on Paws::Lambda

DESCRIPTION

This class represents the parameters used for calling the method ListLayers on the AWS Lambda service. Use the attributes of this class as arguments to method ListLayers.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListLayers.

SYNOPSIS

    my $lambda = Paws->service('Lambda');
    # To list the layers that are compatible with your function's runtime
    # The following example returns information about layers that are compatible
    # with the Python 3.7 runtime.
    my $ListLayersResponse =
      $lambda->ListLayers( 'CompatibleRuntime' => 'python3.7' );

    # Results:
    my $Layers = $ListLayersResponse->Layers;

    # Returns a L<Paws::Lambda::ListLayersResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/lambda/ListLayers

ATTRIBUTES

CompatibleRuntime => Str

A runtime identifier. For example, go1.x.

Valid values are: "nodejs", "nodejs4.3", "nodejs6.10", "nodejs8.10", "nodejs10.x", "nodejs12.x", "nodejs14.x", "java8", "java8.al2", "java11", "python2.7", "python3.6", "python3.7", "python3.8", "dotnetcore1.0", "dotnetcore2.0", "dotnetcore2.1", "dotnetcore3.1", "nodejs4.3-edge", "go1.x", "ruby2.5", "ruby2.7", "provided", "provided.al2"

Marker => Str

A pagination token returned by a previous call.

MaxItems => Int

The maximum number of layers to return.

SEE ALSO

This class forms part of Paws, documenting arguments for method ListLayers in Paws::Lambda

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues