/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used
* to preprocess records in the stream, and the ARN of the IAM role that is used to
* access the AWS Lambda expression.See Also:
AWS
* API Reference
The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline const Aws::String& GetResourceARN() const{ return m_resourceARN; } /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; } /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; } /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); } /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); } /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline InputLambdaProcessorDescription& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;} /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline InputLambdaProcessorDescription& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;} /** *The ARN of the AWS Lambda * function that is used to preprocess the records in the stream.
*/ inline InputLambdaProcessorDescription& WithResourceARN(const char* value) { SetResourceARN(value); return *this;} /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline const Aws::String& GetRoleARN() const{ return m_roleARN; } /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline bool RoleARNHasBeenSet() const { return m_roleARNHasBeenSet; } /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline void SetRoleARN(const Aws::String& value) { m_roleARNHasBeenSet = true; m_roleARN = value; } /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline void SetRoleARN(Aws::String&& value) { m_roleARNHasBeenSet = true; m_roleARN = std::move(value); } /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline void SetRoleARN(const char* value) { m_roleARNHasBeenSet = true; m_roleARN.assign(value); } /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline InputLambdaProcessorDescription& WithRoleARN(const Aws::String& value) { SetRoleARN(value); return *this;} /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline InputLambdaProcessorDescription& WithRoleARN(Aws::String&& value) { SetRoleARN(std::move(value)); return *this;} /** *The ARN of the IAM role that is used to access the AWS Lambda function.
*/ inline InputLambdaProcessorDescription& WithRoleARN(const char* value) { SetRoleARN(value); return *this;} private: Aws::String m_resourceARN; bool m_resourceARNHasBeenSet = false; Aws::String m_roleARN; bool m_roleARNHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws