![]() |
![]()
| ![]() |
![]()
NAMEPaws::Lambda::ListLayerVersions - Arguments for method ListLayerVersions on Paws::Lambda DESCRIPTIONThis class represents the parameters used for calling the method ListLayerVersions on the AWS Lambda service. Use the attributes of this class as arguments to method ListLayerVersions. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListLayerVersions. SYNOPSISmy $lambda = Paws->service('Lambda'); # To list versions of a layer # The following example displays information about the versions for the layer # named blank-java-lib my $ListLayerVersionsResponse = $lambda->ListLayerVersions( 'LayerName' => 'blank-java-lib' ); # Results: my $LayerVersions = $ListLayerVersionsResponse->LayerVersions; # Returns a L<Paws::Lambda::ListLayerVersionsResponse> 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/ListLayerVersions> ATTRIBUTESCompatibleRuntime => StrA 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" REQUIRED LayerName => StrThe name or Amazon Resource Name (ARN) of the layer. Marker => StrA pagination token returned by a previous call. MaxItems => IntThe maximum number of versions to return. SEE ALSOThis class forms part of Paws, documenting arguments for method ListLayerVersions in Paws::Lambda BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|