/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides configuration information about a Lambda function alias.See
* Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the alias.
*/ inline const Aws::String& GetAliasArn() const{ return m_aliasArn; } /** *The Amazon Resource Name (ARN) of the alias.
*/ inline void SetAliasArn(const Aws::String& value) { m_aliasArn = value; } /** *The Amazon Resource Name (ARN) of the alias.
*/ inline void SetAliasArn(Aws::String&& value) { m_aliasArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the alias.
*/ inline void SetAliasArn(const char* value) { m_aliasArn.assign(value); } /** *The Amazon Resource Name (ARN) of the alias.
*/ inline GetAliasResult& WithAliasArn(const Aws::String& value) { SetAliasArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the alias.
*/ inline GetAliasResult& WithAliasArn(Aws::String&& value) { SetAliasArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the alias.
*/ inline GetAliasResult& WithAliasArn(const char* value) { SetAliasArn(value); return *this;} /** *The name of the alias.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the alias.
*/ inline void SetName(const Aws::String& value) { m_name = value; } /** *The name of the alias.
*/ inline void SetName(Aws::String&& value) { m_name = std::move(value); } /** *The name of the alias.
*/ inline void SetName(const char* value) { m_name.assign(value); } /** *The name of the alias.
*/ inline GetAliasResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the alias.
*/ inline GetAliasResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the alias.
*/ inline GetAliasResult& 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 void SetFunctionVersion(const Aws::String& value) { m_functionVersion = value; } /** *The function version that the alias invokes.
*/ inline void SetFunctionVersion(Aws::String&& value) { m_functionVersion = std::move(value); } /** *The function version that the alias invokes.
*/ inline void SetFunctionVersion(const char* value) { m_functionVersion.assign(value); } /** *The function version that the alias invokes.
*/ inline GetAliasResult& WithFunctionVersion(const Aws::String& value) { SetFunctionVersion(value); return *this;} /** *The function version that the alias invokes.
*/ inline GetAliasResult& WithFunctionVersion(Aws::String&& value) { SetFunctionVersion(std::move(value)); return *this;} /** *The function version that the alias invokes.
*/ inline GetAliasResult& 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 void SetDescription(const Aws::String& value) { m_description = value; } /** *A description of the alias.
*/ inline void SetDescription(Aws::String&& value) { m_description = std::move(value); } /** *A description of the alias.
*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *A description of the alias.
*/ inline GetAliasResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A description of the alias.
*/ inline GetAliasResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A description of the alias.
*/ inline GetAliasResult& 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 void SetRoutingConfig(const AliasRoutingConfiguration& value) { m_routingConfig = value; } /** *The routing * configuration of the alias.
*/ inline void SetRoutingConfig(AliasRoutingConfiguration&& value) { m_routingConfig = std::move(value); } /** *The routing * configuration of the alias.
*/ inline GetAliasResult& WithRoutingConfig(const AliasRoutingConfiguration& value) { SetRoutingConfig(value); return *this;} /** *The routing * configuration of the alias.
*/ inline GetAliasResult& WithRoutingConfig(AliasRoutingConfiguration&& value) { SetRoutingConfig(std::move(value)); return *this;} /** *A unique identifier that changes when you update the alias.
*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *A unique identifier that changes when you update the alias.
*/ inline void SetRevisionId(const Aws::String& value) { m_revisionId = value; } /** *A unique identifier that changes when you update the alias.
*/ inline void SetRevisionId(Aws::String&& value) { m_revisionId = std::move(value); } /** *A unique identifier that changes when you update the alias.
*/ inline void SetRevisionId(const char* value) { m_revisionId.assign(value); } /** *A unique identifier that changes when you update the alias.
*/ inline GetAliasResult& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *A unique identifier that changes when you update the alias.
*/ inline GetAliasResult& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *A unique identifier that changes when you update the alias.
*/ inline GetAliasResult& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetAliasResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetAliasResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetAliasResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_aliasArn; Aws::String m_name; Aws::String m_functionVersion; Aws::String m_description; AliasRoutingConfiguration m_routingConfig; Aws::String m_revisionId; Aws::String m_requestId; }; } // namespace Model } // namespace Lambda } // namespace Aws