/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include For a SQL-based Kinesis Data Analytics application, identifies a Kinesis Data
* Firehose delivery stream as the streaming source. You provide the delivery
* stream's Amazon Resource Name (ARN).See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the delivery stream.
*/ inline const Aws::String& GetResourceARN() const{ return m_resourceARN; } /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; } /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; } /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); } /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); } /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline KinesisFirehoseInput& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;} /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline KinesisFirehoseInput& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the delivery stream.
*/ inline KinesisFirehoseInput& WithResourceARN(const char* value) { SetResourceARN(value); return *this;} private: Aws::String m_resourceARN; bool m_resourceARNHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws