/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A processor's metadata.See Also:
AWS
* API Reference
Indicates that the processor is of type Lambda.
*/ inline const LambdaConfiguration& GetLambda() const{ return m_lambda; } /** *Indicates that the processor is of type Lambda.
*/ inline bool LambdaHasBeenSet() const { return m_lambdaHasBeenSet; } /** *Indicates that the processor is of type Lambda.
*/ inline void SetLambda(const LambdaConfiguration& value) { m_lambdaHasBeenSet = true; m_lambda = value; } /** *Indicates that the processor is of type Lambda.
*/ inline void SetLambda(LambdaConfiguration&& value) { m_lambdaHasBeenSet = true; m_lambda = std::move(value); } /** *Indicates that the processor is of type Lambda.
*/ inline ProcessorConfiguration& WithLambda(const LambdaConfiguration& value) { SetLambda(value); return *this;} /** *Indicates that the processor is of type Lambda.
*/ inline ProcessorConfiguration& WithLambda(LambdaConfiguration&& value) { SetLambda(std::move(value)); return *this;} private: LambdaConfiguration m_lambda; bool m_lambdaHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMessaging } // namespace Aws