Class: Aws::Lambda::Types::UpdateFunctionCodeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::UpdateFunctionCodeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
When making an API call, you may pass UpdateFunctionCodeRequest data as a hash:
{
function_name: "FunctionName", # required
zip_file: "data",
s3_bucket: "S3Bucket",
s3_key: "S3Key",
s3_object_version: "S3ObjectVersion",
publish: false,
dry_run: false,
}
Instance Attribute Summary collapse
-
#dry_run ⇒ Boolean
This boolean parameter can be used to test your request to AWS Lambda to update the Lambda function and publish a version as an atomic operation.
-
#function_name ⇒ String
The existing Lambda function name whose code you want to replace.
-
#publish ⇒ Boolean
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
-
#s3_bucket ⇒ String
Amazon S3 bucket name where the .zip file containing your deployment package is stored.
-
#s3_key ⇒ String
The Amazon S3 object (the deployment package) key name you want to upload.
-
#s3_object_version ⇒ String
The Amazon S3 object (the deployment package) version you want to upload.
-
#zip_file ⇒ String
The contents of your zip file containing your deployment package.
Instance Attribute Details
#dry_run ⇒ Boolean
This boolean parameter can be used to test your request to AWS Lambda to update the Lambda function and publish a version as an atomic operation. It will do all necessary computation and validation of your code but will not upload it or a publish a version. Each time this operation is invoked, the ‘CodeSha256` hash value the provided code will also be computed and returned in the response.
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |
#function_name ⇒ String
The existing Lambda function name whose code you want to replace.
You can specify a function name (for example, ‘Thumbnail`) or you can specify Amazon Resource Name (ARN) of the function (for example, `arn:aws:lambda:us-west-2:account-id:function:ThumbNail`). AWS Lambda also allows you to specify a partial ARN (for example, `account-id:Thumbnail`). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length.
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |
#publish ⇒ Boolean
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |
#s3_bucket ⇒ String
Amazon S3 bucket name where the .zip file containing your deployment package is stored. This bucket must reside in the same AWS Region where you are creating the Lambda function.
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |
#s3_key ⇒ String
The Amazon S3 object (the deployment package) key name you want to upload.
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |
#s3_object_version ⇒ String
The Amazon S3 object (the deployment package) version you want to upload.
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |
#zip_file ⇒ String
The contents of your zip file containing your deployment package. If you are using the web API directly, the contents of the zip file must be base64-encoded. If you are using the AWS SDKs or the AWS CLI, the SDKs or CLI will do the encoding for you. For more information about creating a .zip file, see [Execution Permissions] in the *AWS Lambda Developer Guide*.
[1]: docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 |
# File 'lib/aws-sdk-lambda/types.rb', line 1997 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run) include Aws::Structure end |