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,
revision_id: "String",
}
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.
-
#revision_id ⇒ String
An optional value you can use to ensure you are updating the latest update of the function version or alias.
-
#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 of the provided code will also be computed and returned in the response.
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) 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.
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) 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.
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) include Aws::Structure end |
#revision_id ⇒ String
An optional value you can use to ensure you are updating the latest update of the function version or alias. If the ‘RevisionID` you pass doesn’t match the latest ‘RevisionId` of the function or alias, it will fail with an error message, advising you to retrieve the latest function version or alias `RevisionID` using either or .
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) 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.
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) include Aws::Structure end |
#s3_key ⇒ String
The Amazon S3 object (the deployment package) key name you want to upload.
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) include Aws::Structure end |
#s3_object_version ⇒ String
The Amazon S3 object (the deployment package) version you want to upload.
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) 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].
[1]: docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 |
# File 'lib/aws-sdk-lambda/types.rb', line 2255 class UpdateFunctionCodeRequest < Struct.new( :function_name, :zip_file, :s3_bucket, :s3_key, :s3_object_version, :publish, :dry_run, :revision_id) include Aws::Structure end |