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

Contains information about an Amazon Kinesis Data Firehose delivery * stream.

See Also:

AWS * API Reference

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

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline const Aws::String& GetStreamName() const{ return m_streamName; } /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; } /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; } /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); } /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); } /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline FirehoseStream& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;} /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline FirehoseStream& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;} /** *

The name of the Amazon Kinesis Data Firehose delivery stream.

*/ inline FirehoseStream& WithStreamName(const char* value) { SetStreamName(value); return *this;} private: Aws::String m_streamName; bool m_streamNameHasBeenSet = false; }; } // namespace Model } // namespace AppFabric } // namespace Aws