Class UpdateFunctionCodeRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.lambda.model.UpdateFunctionCodeRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class UpdateFunctionCodeRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description UpdateFunctionCodeRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateFunctionCodeRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetFunctionName()The existing Lambda function name whose code you want to replace.BooleangetPublish()This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.StringgetS3Bucket()Amazon S3 bucket name where the .zip file containing your deployment package is stored.StringgetS3Key()The Amazon S3 object (the deployment package) key name you want to upload.StringgetS3ObjectVersion()The Amazon S3 object (the deployment package) version you want to upload.ByteBuffergetZipFile()Based64-encoded .zip file containing your packaged source code.inthashCode()BooleanisPublish()This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.voidsetFunctionName(String functionName)The existing Lambda function name whose code you want to replace.voidsetPublish(Boolean publish)This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.voidsetS3Bucket(String s3Bucket)Amazon S3 bucket name where the .zip file containing your deployment package is stored.voidsetS3Key(String s3Key)The Amazon S3 object (the deployment package) key name you want to upload.voidsetS3ObjectVersion(String s3ObjectVersion)The Amazon S3 object (the deployment package) version you want to upload.voidsetZipFile(ByteBuffer zipFile)Based64-encoded .zip file containing your packaged source code.StringtoString()Returns a string representation of this object; useful for testing and debugging.UpdateFunctionCodeRequestwithFunctionName(String functionName)The existing Lambda function name whose code you want to replace.UpdateFunctionCodeRequestwithPublish(Boolean publish)This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.UpdateFunctionCodeRequestwithS3Bucket(String s3Bucket)Amazon S3 bucket name where the .zip file containing your deployment package is stored.UpdateFunctionCodeRequestwithS3Key(String s3Key)The Amazon S3 object (the deployment package) key name you want to upload.UpdateFunctionCodeRequestwithS3ObjectVersion(String s3ObjectVersion)The Amazon S3 object (the deployment package) version you want to upload.UpdateFunctionCodeRequestwithZipFile(ByteBuffer zipFile)Based64-encoded .zip file containing your packaged source code.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setFunctionName
public void setFunctionName(String functionName)
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 character in length.- Parameters:
functionName- 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 character in length.
-
getFunctionName
public String getFunctionName()
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 character in length.- Returns:
- 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 character in length.
-
withFunctionName
public UpdateFunctionCodeRequest withFunctionName(String functionName)
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 character in length.- Parameters:
functionName- 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 character in length.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setZipFile
public void setZipFile(ByteBuffer zipFile)
Based64-encoded .zip file containing your packaged source code.
AWS SDK for Java performs a Base64 encoding on this field before sending this request to AWS service by default. Users of the SDK should not perform Base64 encoding on this field.
Warning: ByteBuffers returned by the SDK are mutable. Changes to the content or position of the byte buffer will be seen by all objects that have a reference to this object. It is recommended to call ByteBuffer.duplicate() or ByteBuffer.asReadOnlyBuffer() before using or reading from the buffer. This behavior will be changed in a future major version of the SDK.
- Parameters:
zipFile- Based64-encoded .zip file containing your packaged source code.
-
getZipFile
public ByteBuffer getZipFile()
Based64-encoded .zip file containing your packaged source code.
ByteBuffers are stateful. Calling theirgetmethods changes theirposition. We recommend usingByteBuffer.asReadOnlyBuffer()to create a read-only view of the buffer with an independentposition, and callinggetmethods on this rather than directly on the returnedByteBuffer. Doing so will ensure that anyone else using theByteBufferwill not be affected by changes to theposition.- Returns:
- Based64-encoded .zip file containing your packaged source code.
-
withZipFile
public UpdateFunctionCodeRequest withZipFile(ByteBuffer zipFile)
Based64-encoded .zip file containing your packaged source code.
- Parameters:
zipFile- Based64-encoded .zip file containing your packaged source code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setS3Bucket
public void setS3Bucket(String s3Bucket)
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.
- Parameters:
s3Bucket- 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.
-
getS3Bucket
public String getS3Bucket()
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.
- Returns:
- 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.
-
withS3Bucket
public UpdateFunctionCodeRequest withS3Bucket(String s3Bucket)
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.
- Parameters:
s3Bucket- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setS3Key
public void setS3Key(String s3Key)
The Amazon S3 object (the deployment package) key name you want to upload.
- Parameters:
s3Key- The Amazon S3 object (the deployment package) key name you want to upload.
-
getS3Key
public String getS3Key()
The Amazon S3 object (the deployment package) key name you want to upload.
- Returns:
- The Amazon S3 object (the deployment package) key name you want to upload.
-
withS3Key
public UpdateFunctionCodeRequest withS3Key(String s3Key)
The Amazon S3 object (the deployment package) key name you want to upload.
- Parameters:
s3Key- The Amazon S3 object (the deployment package) key name you want to upload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setS3ObjectVersion
public void setS3ObjectVersion(String s3ObjectVersion)
The Amazon S3 object (the deployment package) version you want to upload.
- Parameters:
s3ObjectVersion- The Amazon S3 object (the deployment package) version you want to upload.
-
getS3ObjectVersion
public String getS3ObjectVersion()
The Amazon S3 object (the deployment package) version you want to upload.
- Returns:
- The Amazon S3 object (the deployment package) version you want to upload.
-
withS3ObjectVersion
public UpdateFunctionCodeRequest withS3ObjectVersion(String s3ObjectVersion)
The Amazon S3 object (the deployment package) version you want to upload.
- Parameters:
s3ObjectVersion- The Amazon S3 object (the deployment package) version you want to upload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setPublish
public void setPublish(Boolean publish)
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
- Parameters:
publish- This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
-
getPublish
public Boolean getPublish()
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
- Returns:
- This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
-
withPublish
public UpdateFunctionCodeRequest withPublish(Boolean publish)
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
- Parameters:
publish- This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isPublish
public Boolean isPublish()
This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
- Returns:
- This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UpdateFunctionCodeRequest clone()
Description copied from class:AmazonWebServiceRequestCreates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clonein classAmazonWebServiceRequest- See Also:
Object.clone()
-
-