/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Lambda { namespace Model { /** */ class CreateAliasRequest : public LambdaRequest { public: AWS_LAMBDA_API CreateAliasRequest(); // 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 "CreateAlias"; } 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 CreateAliasRequest& 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 CreateAliasRequest& 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 CreateAliasRequest& WithFunctionName(const char* value) { SetFunctionName(value); return *this;} /** *

The name of the alias.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the alias.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the alias.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the alias.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the alias.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the alias.

*/ inline CreateAliasRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the alias.

*/ inline CreateAliasRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the alias.

*/ inline CreateAliasRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The function version that the alias invokes.

*/ inline const Aws::String& GetFunctionVersion() const{ return m_functionVersion; } /** *

The function version that the alias invokes.

*/ inline bool FunctionVersionHasBeenSet() const { return m_functionVersionHasBeenSet; } /** *

The function version that the alias invokes.

*/ inline void SetFunctionVersion(const Aws::String& value) { m_functionVersionHasBeenSet = true; m_functionVersion = value; } /** *

The function version that the alias invokes.

*/ inline void SetFunctionVersion(Aws::String&& value) { m_functionVersionHasBeenSet = true; m_functionVersion = std::move(value); } /** *

The function version that the alias invokes.

*/ inline void SetFunctionVersion(const char* value) { m_functionVersionHasBeenSet = true; m_functionVersion.assign(value); } /** *

The function version that the alias invokes.

*/ inline CreateAliasRequest& WithFunctionVersion(const Aws::String& value) { SetFunctionVersion(value); return *this;} /** *

The function version that the alias invokes.

*/ inline CreateAliasRequest& WithFunctionVersion(Aws::String&& value) { SetFunctionVersion(std::move(value)); return *this;} /** *

The function version that the alias invokes.

*/ inline CreateAliasRequest& WithFunctionVersion(const char* value) { SetFunctionVersion(value); return *this;} /** *

A description of the alias.

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

A description of the alias.

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

A description of the alias.

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

A description of the alias.

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

A description of the alias.

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

A description of the alias.

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

A description of the alias.

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

A description of the alias.

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

The routing * configuration of the alias.

*/ inline const AliasRoutingConfiguration& GetRoutingConfig() const{ return m_routingConfig; } /** *

The routing * configuration of the alias.

*/ inline bool RoutingConfigHasBeenSet() const { return m_routingConfigHasBeenSet; } /** *

The routing * configuration of the alias.

*/ inline void SetRoutingConfig(const AliasRoutingConfiguration& value) { m_routingConfigHasBeenSet = true; m_routingConfig = value; } /** *

The routing * configuration of the alias.

*/ inline void SetRoutingConfig(AliasRoutingConfiguration&& value) { m_routingConfigHasBeenSet = true; m_routingConfig = std::move(value); } /** *

The routing * configuration of the alias.

*/ inline CreateAliasRequest& WithRoutingConfig(const AliasRoutingConfiguration& value) { SetRoutingConfig(value); return *this;} /** *

The routing * configuration of the alias.

*/ inline CreateAliasRequest& WithRoutingConfig(AliasRoutingConfiguration&& value) { SetRoutingConfig(std::move(value)); return *this;} private: Aws::String m_functionName; bool m_functionNameHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_functionVersion; bool m_functionVersionHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; AliasRoutingConfiguration m_routingConfig; bool m_routingConfigHasBeenSet = false; }; } // namespace Model } // namespace Lambda } // namespace Aws