/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the configuration of the connector being
* registered.See Also:
AWS
* API Reference
Contains information about the configuration of the lambda which is being * registered as the connector.
*/ inline const LambdaConnectorProvisioningConfig& GetLambda() const{ return m_lambda; } /** *Contains information about the configuration of the lambda which is being * registered as the connector.
*/ inline bool LambdaHasBeenSet() const { return m_lambdaHasBeenSet; } /** *Contains information about the configuration of the lambda which is being * registered as the connector.
*/ inline void SetLambda(const LambdaConnectorProvisioningConfig& value) { m_lambdaHasBeenSet = true; m_lambda = value; } /** *Contains information about the configuration of the lambda which is being * registered as the connector.
*/ inline void SetLambda(LambdaConnectorProvisioningConfig&& value) { m_lambdaHasBeenSet = true; m_lambda = std::move(value); } /** *Contains information about the configuration of the lambda which is being * registered as the connector.
*/ inline ConnectorProvisioningConfig& WithLambda(const LambdaConnectorProvisioningConfig& value) { SetLambda(value); return *this;} /** *Contains information about the configuration of the lambda which is being * registered as the connector.
*/ inline ConnectorProvisioningConfig& WithLambda(LambdaConnectorProvisioningConfig&& value) { SetLambda(std::move(value)); return *this;} private: LambdaConnectorProvisioningConfig m_lambda; bool m_lambdaHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws