/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace KinesisAnalyticsV2 { namespace Model { /** *

For a SQL-based Kinesis Data Analytics application, describes the Kinesis * data stream that is configured as the streaming source in the application input * configuration.

See Also:

AWS * API Reference

*/ class KinesisStreamsInputDescription { public: AWS_KINESISANALYTICSV2_API KinesisStreamsInputDescription(); AWS_KINESISANALYTICSV2_API KinesisStreamsInputDescription(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API KinesisStreamsInputDescription& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline const Aws::String& GetResourceARN() const{ return m_resourceARN; } /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline bool ResourceARNHasBeenSet() const { return m_resourceARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline void SetResourceARN(const Aws::String& value) { m_resourceARNHasBeenSet = true; m_resourceARN = value; } /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline void SetResourceARN(Aws::String&& value) { m_resourceARNHasBeenSet = true; m_resourceARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline void SetResourceARN(const char* value) { m_resourceARNHasBeenSet = true; m_resourceARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline KinesisStreamsInputDescription& WithResourceARN(const Aws::String& value) { SetResourceARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline KinesisStreamsInputDescription& WithResourceARN(Aws::String&& value) { SetResourceARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Kinesis data stream.

*/ inline KinesisStreamsInputDescription& WithResourceARN(const char* value) { SetResourceARN(value); return *this;} /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline const Aws::String& GetRoleARN() const{ return m_roleARN; } /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline bool RoleARNHasBeenSet() const { return m_roleARNHasBeenSet; } /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline void SetRoleARN(const Aws::String& value) { m_roleARNHasBeenSet = true; m_roleARN = value; } /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline void SetRoleARN(Aws::String&& value) { m_roleARNHasBeenSet = true; m_roleARN = std::move(value); } /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline void SetRoleARN(const char* value) { m_roleARNHasBeenSet = true; m_roleARN.assign(value); } /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline KinesisStreamsInputDescription& WithRoleARN(const Aws::String& value) { SetRoleARN(value); return *this;} /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline KinesisStreamsInputDescription& WithRoleARN(Aws::String&& value) { SetRoleARN(std::move(value)); return *this;} /** *

The ARN of the IAM role that Kinesis Data Analytics can assume to access the * stream.

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.

*/ inline KinesisStreamsInputDescription& WithRoleARN(const char* value) { SetRoleARN(value); return *this;} private: Aws::String m_resourceARN; bool m_resourceARNHasBeenSet = false; Aws::String m_roleARN; bool m_roleARNHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws