/** * 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 KinesisAnalyticsV2 { namespace Model { /** *

When you configure an SQL-based Amazon Kinesis Data Analytics application's * output, identifies an AWS Lambda function as the destination. You provide the * function Amazon Resource Name (ARN) of the Lambda function.

See * Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline const Aws::String& GetResourceARN() const{ return m_resourceARN; } /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; } /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline LambdaOutput& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline LambdaOutput& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the destination Lambda function to write * to.

To specify an earlier version of the Lambda function than the * latest, include the Lambda function version in the Lambda function ARN. For more * information about Lambda ARNs, see Example * ARNs: AWS Lambda

*/ inline LambdaOutput& WithResourceARN(const char* value) { SetResourceARN(value); return *this;} private: Aws::String m_resourceARN; bool m_resourceARNHasBeenSet; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws