AWS SDK for C++  0.12.9
AWS SDK for C++
Public Member Functions | List of all members
Aws::Lambda::Model::UpdateFunctionCodeRequest Class Reference

#include <UpdateFunctionCodeRequest.h>

Inheritance diagram for Aws::Lambda::Model::UpdateFunctionCodeRequest:
Aws::Lambda::LambdaRequest Aws::AmazonSerializableWebServiceRequest Aws::AmazonWebServiceRequest

Public Member Functions

 UpdateFunctionCodeRequest ()
 
Aws::String SerializePayload () const override
 
const Aws::StringGetFunctionName () const
 
void SetFunctionName (const Aws::String &value)
 
void SetFunctionName (Aws::String &&value)
 
void SetFunctionName (const char *value)
 
UpdateFunctionCodeRequestWithFunctionName (const Aws::String &value)
 
UpdateFunctionCodeRequestWithFunctionName (Aws::String &&value)
 
UpdateFunctionCodeRequestWithFunctionName (const char *value)
 
const Aws::Utils::ByteBufferGetZipFile () const
 
void SetZipFile (const Aws::Utils::ByteBuffer &value)
 
void SetZipFile (Aws::Utils::ByteBuffer &&value)
 
UpdateFunctionCodeRequestWithZipFile (const Aws::Utils::ByteBuffer &value)
 
UpdateFunctionCodeRequestWithZipFile (Aws::Utils::ByteBuffer &&value)
 
const Aws::StringGetS3Bucket () const
 
void SetS3Bucket (const Aws::String &value)
 
void SetS3Bucket (Aws::String &&value)
 
void SetS3Bucket (const char *value)
 
UpdateFunctionCodeRequestWithS3Bucket (const Aws::String &value)
 
UpdateFunctionCodeRequestWithS3Bucket (Aws::String &&value)
 
UpdateFunctionCodeRequestWithS3Bucket (const char *value)
 
const Aws::StringGetS3Key () const
 
void SetS3Key (const Aws::String &value)
 
void SetS3Key (Aws::String &&value)
 
void SetS3Key (const char *value)
 
UpdateFunctionCodeRequestWithS3Key (const Aws::String &value)
 
UpdateFunctionCodeRequestWithS3Key (Aws::String &&value)
 
UpdateFunctionCodeRequestWithS3Key (const char *value)
 
const Aws::StringGetS3ObjectVersion () const
 
void SetS3ObjectVersion (const Aws::String &value)
 
void SetS3ObjectVersion (Aws::String &&value)
 
void SetS3ObjectVersion (const char *value)
 
UpdateFunctionCodeRequestWithS3ObjectVersion (const Aws::String &value)
 
UpdateFunctionCodeRequestWithS3ObjectVersion (Aws::String &&value)
 
UpdateFunctionCodeRequestWithS3ObjectVersion (const char *value)
 
bool GetPublish () const
 
void SetPublish (bool value)
 
UpdateFunctionCodeRequestWithPublish (bool value)
 
- Public Member Functions inherited from Aws::Lambda::LambdaRequest
virtual ~LambdaRequest ()
 
void AddParametersToRequest (Aws::Http::HttpRequest &httpRequest) const
 
Aws::Http::HeaderValueCollection GetHeaders () const override
 
- Public Member Functions inherited from Aws::AmazonSerializableWebServiceRequest
 AmazonSerializableWebServiceRequest ()
 
virtual ~AmazonSerializableWebServiceRequest ()
 
std::shared_ptr< Aws::IOStreamGetBody () const override
 
- Public Member Functions inherited from Aws::AmazonWebServiceRequest
 AmazonWebServiceRequest ()
 
virtual ~AmazonWebServiceRequest ()=default
 
virtual void AddQueryStringParameters (Aws::Http::URI &uri) const
 
const Aws::IOStreamFactoryGetResponseStreamFactory () const
 
void SetResponseStreamFactory (const Aws::IOStreamFactory &factory)
 
virtual void SetDataReceivedEventHandler (const Aws::Http::DataReceivedEventHandler &dataReceivedEventHandler)
 
virtual void SetDataSentEventHandler (const Aws::Http::DataSentEventHandler &dataSentEventHandler)
 
virtual void SetDataReceivedEventHandler (Aws::Http::DataReceivedEventHandler &&dataReceivedEventHandler)
 
virtual void SetDataSentEventHandler (Aws::Http::DataSentEventHandler &&dataSentEventHandler)
 
virtual const Aws::Http::DataReceivedEventHandlerGetDataReceivedEventHandler () const
 
virtual const Aws::Http::DataSentEventHandlerGetDataSentEventHandler () const
 
virtual bool ShouldComputeContentMd5 () const
 

Additional Inherited Members

- Protected Member Functions inherited from Aws::Lambda::LambdaRequest
virtual Aws::Http::HeaderValueCollection GetRequestSpecificHeaders () const
 

Detailed Description

Definition at line 30 of file UpdateFunctionCodeRequest.h.

Constructor & Destructor Documentation

Aws::Lambda::Model::UpdateFunctionCodeRequest::UpdateFunctionCodeRequest ( )

Member Function Documentation

const Aws::String& Aws::Lambda::Model::UpdateFunctionCodeRequest::GetFunctionName ( ) const
inline

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.

Definition at line 46 of file UpdateFunctionCodeRequest.h.

bool Aws::Lambda::Model::UpdateFunctionCodeRequest::GetPublish ( ) const
inline

This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.

Definition at line 275 of file UpdateFunctionCodeRequest.h.

const Aws::String& Aws::Lambda::Model::UpdateFunctionCodeRequest::GetS3Bucket ( ) const
inline

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.

Definition at line 150 of file UpdateFunctionCodeRequest.h.

const Aws::String& Aws::Lambda::Model::UpdateFunctionCodeRequest::GetS3Key ( ) const
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 198 of file UpdateFunctionCodeRequest.h.

const Aws::String& Aws::Lambda::Model::UpdateFunctionCodeRequest::GetS3ObjectVersion ( ) const
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 239 of file UpdateFunctionCodeRequest.h.

const Aws::Utils::ByteBuffer& Aws::Lambda::Model::UpdateFunctionCodeRequest::GetZipFile ( ) const
inline

Based64-encoded .zip file containing your packaged source code.

Definition at line 123 of file UpdateFunctionCodeRequest.h.

Aws::String Aws::Lambda::Model::UpdateFunctionCodeRequest::SerializePayload ( ) const
overridevirtual

Convert payload into String.

Implements Aws::Lambda::LambdaRequest.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetFunctionName ( const Aws::String value)
inline

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.

Definition at line 58 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetFunctionName ( Aws::String &&  value)
inline

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.

Definition at line 70 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetFunctionName ( const char *  value)
inline

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.

Definition at line 82 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetPublish ( bool  value)
inline

This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.

Definition at line 281 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3Bucket ( const Aws::String value)
inline

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.

Definition at line 157 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3Bucket ( Aws::String &&  value)
inline

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.

Definition at line 164 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3Bucket ( const char *  value)
inline

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.

Definition at line 171 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3Key ( const Aws::String value)
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 204 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3Key ( Aws::String &&  value)
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 210 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3Key ( const char *  value)
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 216 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3ObjectVersion ( const Aws::String value)
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 244 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3ObjectVersion ( Aws::String &&  value)
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 249 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetS3ObjectVersion ( const char *  value)
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 254 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetZipFile ( const Aws::Utils::ByteBuffer value)
inline

Based64-encoded .zip file containing your packaged source code.

Definition at line 128 of file UpdateFunctionCodeRequest.h.

void Aws::Lambda::Model::UpdateFunctionCodeRequest::SetZipFile ( Aws::Utils::ByteBuffer &&  value)
inline

Based64-encoded .zip file containing your packaged source code.

Definition at line 133 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithFunctionName ( const Aws::String value)
inline

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.

Definition at line 94 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithFunctionName ( Aws::String &&  value)
inline

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.

Definition at line 106 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithFunctionName ( const char *  value)
inline

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.

Definition at line 118 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithPublish ( bool  value)
inline

This boolean parameter can be used to request AWS Lambda to update the Lambda function and publish a version as an atomic operation.

Definition at line 287 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3Bucket ( const Aws::String value)
inline

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.

Definition at line 178 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3Bucket ( Aws::String &&  value)
inline

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.

Definition at line 185 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3Bucket ( const char *  value)
inline

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.

Definition at line 192 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3Key ( const Aws::String value)
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 222 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3Key ( Aws::String &&  value)
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 228 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3Key ( const char *  value)
inline

The Amazon S3 object (the deployment package) key name you want to upload.

Definition at line 234 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3ObjectVersion ( const Aws::String value)
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 259 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3ObjectVersion ( Aws::String &&  value)
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 264 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithS3ObjectVersion ( const char *  value)
inline

The Amazon S3 object (the deployment package) version you want to upload.

Definition at line 269 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithZipFile ( const Aws::Utils::ByteBuffer value)
inline

Based64-encoded .zip file containing your packaged source code.

Definition at line 138 of file UpdateFunctionCodeRequest.h.

UpdateFunctionCodeRequest& Aws::Lambda::Model::UpdateFunctionCodeRequest::WithZipFile ( Aws::Utils::ByteBuffer &&  value)
inline

Based64-encoded .zip file containing your packaged source code.

Definition at line 143 of file UpdateFunctionCodeRequest.h.


The documentation for this class was generated from the following file: