/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include When you update the input configuration for an SQL-based Amazon Kinesis Data
* Analytics application, provides information about an Amazon Kinesis stream as
* the streaming source.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline const Aws::String& GetResourceARNUpdate() const{ return m_resourceARNUpdate; } /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline bool ResourceARNUpdateHasBeenSet() const { return m_resourceARNUpdateHasBeenSet; } /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline void SetResourceARNUpdate(const Aws::String& value) { m_resourceARNUpdateHasBeenSet = true; m_resourceARNUpdate = value; } /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline void SetResourceARNUpdate(Aws::String&& value) { m_resourceARNUpdateHasBeenSet = true; m_resourceARNUpdate = std::move(value); } /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline void SetResourceARNUpdate(const char* value) { m_resourceARNUpdateHasBeenSet = true; m_resourceARNUpdate.assign(value); } /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline KinesisStreamsInputUpdate& WithResourceARNUpdate(const Aws::String& value) { SetResourceARNUpdate(value); return *this;} /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline KinesisStreamsInputUpdate& WithResourceARNUpdate(Aws::String&& value) { SetResourceARNUpdate(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the input Kinesis data stream to read.
*/ inline KinesisStreamsInputUpdate& WithResourceARNUpdate(const char* value) { SetResourceARNUpdate(value); return *this;} private: Aws::String m_resourceARNUpdate; bool m_resourceARNUpdateHasBeenSet; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws