PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::Lambda::UpdateFunctionConfiguration; use Moose; has DeadLetterConfig => (is => 'ro', isa => 'Paws::Lambda::DeadLetterConfig'); has Description => (is => 'ro', isa => 'Str'); has Environment => (is => 'ro', isa => 'Paws::Lambda::Environment'); has FileSystemConfigs => (is => 'ro', isa => 'ArrayRef[Paws::Lambda::FileSystemConfig]'); has FunctionName => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'FunctionName', required => 1); has Handler => (is => 'ro', isa => 'Str'); has ImageConfig => (is => 'ro', isa => 'Paws::Lambda::ImageConfig'); has KMSKeyArn => (is => 'ro', isa => 'Str'); has Layers => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has MemorySize => (is => 'ro', isa => 'Int'); has RevisionId => (is => 'ro', isa => 'Str'); has Role => (is => 'ro', isa => 'Str'); has Runtime => (is => 'ro', isa => 'Str'); has Timeout => (is => 'ro', isa => 'Int'); has TracingConfig => (is => 'ro', isa => 'Paws::Lambda::TracingConfig'); has VpcConfig => (is => 'ro', isa => 'Paws::Lambda::VpcConfig'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateFunctionConfiguration'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2015-03-31/functions/{FunctionName}/configuration'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'PUT'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Lambda::FunctionConfiguration'); 1; ### main pod documentation begin ### =head1 NAME Paws::Lambda::UpdateFunctionConfiguration - Arguments for method UpdateFunctionConfiguration on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateFunctionConfiguration on the L service. Use the attributes of this class as arguments to method UpdateFunctionConfiguration. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateFunctionConfiguration. =head1 SYNOPSIS my $lambda = Paws->service('Lambda'); # To update a Lambda function's configuration # The following example modifies the memory size to be 256 MB for the # unpublished ($LATEST) version of a function named my-function. my $FunctionConfiguration = $lambda->UpdateFunctionConfiguration( 'FunctionName' => 'my-function', 'MemorySize' => 256 ); # Results: my $CodeSha256 = $FunctionConfiguration->CodeSha256; my $CodeSize = $FunctionConfiguration->CodeSize; my $Description = $FunctionConfiguration->Description; my $FunctionArn = $FunctionConfiguration->FunctionArn; my $FunctionName = $FunctionConfiguration->FunctionName; my $Handler = $FunctionConfiguration->Handler; my $LastModified = $FunctionConfiguration->LastModified; my $MemorySize = $FunctionConfiguration->MemorySize; my $RevisionId = $FunctionConfiguration->RevisionId; my $Role = $FunctionConfiguration->Role; my $Runtime = $FunctionConfiguration->Runtime; my $Timeout = $FunctionConfiguration->Timeout; my $TracingConfig = $FunctionConfiguration->TracingConfig; my $Version = $FunctionConfiguration->Version; # Returns a L 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 L =head1 ATTRIBUTES =head2 DeadLetterConfig => L A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues (https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq). =head2 Description => Str A description of the function. =head2 Environment => L Environment variables that are accessible from function code during execution. =head2 FileSystemConfigs => ArrayRef[L] Connection settings for an Amazon EFS file system. =head2 B FunctionName => Str The name of the Lambda function. B =over =item * B - C. =item * B - C. =item * B - C<123456789012:function:my-function>. =back The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length. =head2 Handler => Str The name of the method within your code that Lambda calls to execute your function. The format includes the file name. It can also include namespaces and other qualifiers, depending on the runtime. For more information, see Programming Model (https://docs.aws.amazon.com/lambda/latest/dg/programming-model-v2.html). =head2 ImageConfig => L Container image configuration values (https://docs.aws.amazon.com/lambda/latest/dg/images-parms.html) that override the values in the container image Dockerfile. =head2 KMSKeyArn => Str The ARN of the Amazon Web Services Key Management Service (KMS) key that's used to encrypt your function's environment variables. If it's not provided, Lambda uses a default service key. =head2 Layers => ArrayRef[Str|Undef] A list of function layers (https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html) to add to the function's execution environment. Specify each layer by its ARN, including the version. =head2 MemorySize => Int The amount of memory available to the function (https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html) at runtime. Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB. =head2 RevisionId => Str Only update the function if the revision ID matches the ID that's specified. Use this option to avoid modifying a function that has changed since you last read it. =head2 Role => Str The Amazon Resource Name (ARN) of the function's execution role. =head2 Runtime => Str The identifier of the function's runtime (https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html). Valid values are: C<"nodejs">, C<"nodejs4.3">, C<"nodejs6.10">, C<"nodejs8.10">, C<"nodejs10.x">, C<"nodejs12.x">, C<"nodejs14.x">, C<"java8">, C<"java8.al2">, C<"java11">, C<"python2.7">, C<"python3.6">, C<"python3.7">, C<"python3.8">, C<"dotnetcore1.0">, C<"dotnetcore2.0">, C<"dotnetcore2.1">, C<"dotnetcore3.1">, C<"nodejs4.3-edge">, C<"go1.x">, C<"ruby2.5">, C<"ruby2.7">, C<"provided">, C<"provided.al2"> =head2 Timeout => Int The amount of time that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For additional information, see Lambda execution environment (https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html). =head2 TracingConfig => L Set C to C to sample and trace a subset of incoming requests with X-Ray (https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html). =head2 VpcConfig => L For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings (https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html). =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateFunctionConfiguration in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut