/** * 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 KinesisAnalytics { namespace Model { /** *

For an application output, describes the Amazon Kinesis Firehose delivery * stream configured as its destination.

See Also:

AWS * API Reference

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

Amazon Resource Name (ARN) of the Amazon Kinesis Firehose delivery * stream.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline KinesisFirehoseOutputDescription& 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 KinesisAnalytics } // namespace Aws