This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-kinesisanalyticsv2/include/aws/kinesisanalyticsv2/model/KinesisStreamsOutputDescription.h

159 lines
6.2 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's output,
* describes the Kinesis data stream that is configured as its destination.
* </p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/KinesisStreamsOutputDescription">AWS
* API Reference</a></p>
*/
class AWS_KINESISANALYTICSV2_API KinesisStreamsOutputDescription
{
public:
KinesisStreamsOutputDescription();
KinesisStreamsOutputDescription(Aws::Utils::Json::JsonView jsonValue);
KinesisStreamsOutputDescription& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline const Aws::String& GetResourceARN() const{ return m_resourceARN; }
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; }
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline KinesisStreamsOutputDescription& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline KinesisStreamsOutputDescription& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Kinesis data stream.</p>
*/
inline KinesisStreamsOutputDescription& WithResourceARN(const char* value) { SetResourceARN(value); return *this;}
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline const Aws::String& GetRoleARN() const{ return m_roleARN; }
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline bool RoleARNHasBeenSet() const { return m_roleARNHasBeenSet; }
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline void SetRoleARN(const Aws::String& value) { m_roleARNHasBeenSet = true; m_roleARN = value; }
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline void SetRoleARN(Aws::String&& value) { m_roleARNHasBeenSet = true; m_roleARN = std::move(value); }
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline void SetRoleARN(const char* value) { m_roleARNHasBeenSet = true; m_roleARN.assign(value); }
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline KinesisStreamsOutputDescription& WithRoleARN(const Aws::String& value) { SetRoleARN(value); return *this;}
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline KinesisStreamsOutputDescription& WithRoleARN(Aws::String&& value) { SetRoleARN(std::move(value)); return *this;}
/**
* <p>The ARN of the IAM role that Kinesis Data Analytics can assume to access the
* stream.</p> <p>Provided for backward compatibility. Applications that are
* created with the current API version have an application-level service execution
* role rather than a resource-level role.</p>
*/
inline KinesisStreamsOutputDescription& WithRoleARN(const char* value) { SetRoleARN(value); return *this;}
private:
Aws::String m_resourceARN;
bool m_resourceARNHasBeenSet;
Aws::String m_roleARN;
bool m_roleARNHasBeenSet;
};
} // namespace Model
} // namespace KinesisAnalyticsV2
} // namespace Aws