/** * 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 { /** *

For a SQL-based Kinesis Data Analytics application, when configuring * application output, identifies a Kinesis Data Firehose delivery stream as the * destination. You provide the stream Amazon Resource Name (ARN) of the delivery * stream.

See Also:

AWS * API Reference

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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

The ARN of the destination delivery stream to write to.

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