/** * 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 connector being * registered.

See Also:

AWS * API Reference

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

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