/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Appflow { namespace Model { /** *

Contains information about the configuration of the lambda which is being * registered as the connector.

See Also:

AWS * API Reference

*/ class LambdaConnectorProvisioningConfig { public: AWS_APPFLOW_API LambdaConnectorProvisioningConfig(); AWS_APPFLOW_API LambdaConnectorProvisioningConfig(Aws::Utils::Json::JsonView jsonValue); AWS_APPFLOW_API LambdaConnectorProvisioningConfig& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Lambda ARN of the connector being registered.

*/ inline const Aws::String& GetLambdaArn() const{ return m_lambdaArn; } /** *

Lambda ARN of the connector being registered.

*/ inline bool LambdaArnHasBeenSet() const { return m_lambdaArnHasBeenSet; } /** *

Lambda ARN of the connector being registered.

*/ inline void SetLambdaArn(const Aws::String& value) { m_lambdaArnHasBeenSet = true; m_lambdaArn = value; } /** *

Lambda ARN of the connector being registered.

*/ inline void SetLambdaArn(Aws::String&& value) { m_lambdaArnHasBeenSet = true; m_lambdaArn = std::move(value); } /** *

Lambda ARN of the connector being registered.

*/ inline void SetLambdaArn(const char* value) { m_lambdaArnHasBeenSet = true; m_lambdaArn.assign(value); } /** *

Lambda ARN of the connector being registered.

*/ inline LambdaConnectorProvisioningConfig& WithLambdaArn(const Aws::String& value) { SetLambdaArn(value); return *this;} /** *

Lambda ARN of the connector being registered.

*/ inline LambdaConnectorProvisioningConfig& WithLambdaArn(Aws::String&& value) { SetLambdaArn(std::move(value)); return *this;} /** *

Lambda ARN of the connector being registered.

*/ inline LambdaConnectorProvisioningConfig& WithLambdaArn(const char* value) { SetLambdaArn(value); return *this;} private: Aws::String m_lambdaArn; bool m_lambdaArnHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws