91 lines
2.8 KiB
C++
91 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace KinesisAnalyticsV2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>For an SQL-based Amazon 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).</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/KinesisFirehoseInput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_KINESISANALYTICSV2_API KinesisFirehoseInput
|
|
{
|
|
public:
|
|
KinesisFirehoseInput();
|
|
KinesisFirehoseInput(Aws::Utils::Json::JsonView jsonValue);
|
|
KinesisFirehoseInput& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline const Aws::String& GetResourceARN() const{ return m_resourceARN; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline KinesisFirehoseInput& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline KinesisFirehoseInput& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Name (ARN) of the delivery stream.</p>
|
|
*/
|
|
inline KinesisFirehoseInput& WithResourceARN(const char* value) { SetResourceARN(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_resourceARN;
|
|
bool m_resourceARNHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace KinesisAnalyticsV2
|
|
} // namespace Aws
|