100 lines
3.3 KiB
C
100 lines
3.3 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>When you update an SQL-based Amazon Kinesis Data Analytics application's
|
|||
|
|
* output configuration using the <a>UpdateApplication</a> operation, provides
|
|||
|
|
* information about a Kinesis data stream that is configured as the
|
|||
|
|
* destination.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/KinesisStreamsOutputUpdate">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_KINESISANALYTICSV2_API KinesisStreamsOutputUpdate
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
KinesisStreamsOutputUpdate();
|
|||
|
|
KinesisStreamsOutputUpdate(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
KinesisStreamsOutputUpdate& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetResourceARNUpdate() const{ return m_resourceARNUpdate; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ResourceARNUpdateHasBeenSet() const { return m_resourceARNUpdateHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourceARNUpdate(const Aws::String& value) { m_resourceARNUpdateHasBeenSet = true; m_resourceARNUpdate = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourceARNUpdate(Aws::String&& value) { m_resourceARNUpdateHasBeenSet = true; m_resourceARNUpdate = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetResourceARNUpdate(const char* value) { m_resourceARNUpdateHasBeenSet = true; m_resourceARNUpdate.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline KinesisStreamsOutputUpdate& WithResourceARNUpdate(const Aws::String& value) { SetResourceARNUpdate(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline KinesisStreamsOutputUpdate& WithResourceARNUpdate(Aws::String&& value) { SetResourceARNUpdate(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you want to
|
|||
|
|
* write the output.</p>
|
|||
|
|
*/
|
|||
|
|
inline KinesisStreamsOutputUpdate& WithResourceARNUpdate(const char* value) { SetResourceARNUpdate(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_resourceARNUpdate;
|
|||
|
|
bool m_resourceARNUpdateHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace KinesisAnalyticsV2
|
|||
|
|
} // namespace Aws
|