/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Lambda { namespace Model { /** */ class PublishVersionRequest : public LambdaRequest { public: AWS_LAMBDA_API PublishVersionRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "PublishVersion"; } AWS_LAMBDA_API Aws::String SerializePayload() const override; /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline const Aws::String& GetFunctionName() const{ return m_functionName; } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline void SetFunctionName(const Aws::String& value) { m_functionNameHasBeenSet = true; m_functionName = value; } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline void SetFunctionName(Aws::String&& value) { m_functionNameHasBeenSet = true; m_functionName = std::move(value); } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline void SetFunctionName(const char* value) { m_functionNameHasBeenSet = true; m_functionName.assign(value); } /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline PublishVersionRequest& WithFunctionName(const Aws::String& value) { SetFunctionName(value); return *this;} /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline PublishVersionRequest& WithFunctionName(Aws::String&& value) { SetFunctionName(std::move(value)); return *this;} /** *

The name of the Lambda function.

Name formats *

  • Function name - MyFunction.

  • *
  • Function ARN - * arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

    *
  • Partial ARN - * 123456789012:function:MyFunction.

The length * constraint applies only to the full ARN. If you specify only the function name, * it is limited to 64 characters in length.

*/ inline PublishVersionRequest& WithFunctionName(const char* value) { SetFunctionName(value); return *this;} /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline const Aws::String& GetCodeSha256() const{ return m_codeSha256; } /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline bool CodeSha256HasBeenSet() const { return m_codeSha256HasBeenSet; } /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline void SetCodeSha256(const Aws::String& value) { m_codeSha256HasBeenSet = true; m_codeSha256 = value; } /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline void SetCodeSha256(Aws::String&& value) { m_codeSha256HasBeenSet = true; m_codeSha256 = std::move(value); } /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline void SetCodeSha256(const char* value) { m_codeSha256HasBeenSet = true; m_codeSha256.assign(value); } /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline PublishVersionRequest& WithCodeSha256(const Aws::String& value) { SetCodeSha256(value); return *this;} /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline PublishVersionRequest& WithCodeSha256(Aws::String&& value) { SetCodeSha256(std::move(value)); return *this;} /** *

Only publish a version if the hash value matches the value that's specified. * Use this option to avoid publishing a version if the function code has changed * since you last updated it. You can get the hash for the version that you * uploaded from the output of UpdateFunctionCode.

*/ inline PublishVersionRequest& WithCodeSha256(const char* value) { SetCodeSha256(value); return *this;} /** *

A description for the version to override the description in the function * configuration.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description for the version to override the description in the function * configuration.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description for the version to override the description in the function * configuration.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description for the version to override the description in the function * configuration.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description for the version to override the description in the function * configuration.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description for the version to override the description in the function * configuration.

*/ inline PublishVersionRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description for the version to override the description in the function * configuration.

*/ inline PublishVersionRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description for the version to override the description in the function * configuration.

*/ inline PublishVersionRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; } /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; } /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); } /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); } /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline PublishVersionRequest& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline PublishVersionRequest& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

Only update the function if the revision ID matches the ID that's specified. * Use this option to avoid publishing a version if the function configuration has * changed since you last updated it.

*/ inline PublishVersionRequest& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} private: Aws::String m_functionName; bool m_functionNameHasBeenSet = false; Aws::String m_codeSha256; bool m_codeSha256HasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_revisionId; bool m_revisionIdHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws