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

Details about a Kinesis data stream used as the source for a Kinesis Data * Firehose delivery stream.

See Also:

AWS * API Reference

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

The KinesisStreamSourceDescription value for the source Kinesis data * stream.

*/ inline const KinesisStreamSourceDescription& GetKinesisStreamSourceDescription() const{ return m_kinesisStreamSourceDescription; } /** *

The KinesisStreamSourceDescription value for the source Kinesis data * stream.

*/ inline bool KinesisStreamSourceDescriptionHasBeenSet() const { return m_kinesisStreamSourceDescriptionHasBeenSet; } /** *

The KinesisStreamSourceDescription value for the source Kinesis data * stream.

*/ inline void SetKinesisStreamSourceDescription(const KinesisStreamSourceDescription& value) { m_kinesisStreamSourceDescriptionHasBeenSet = true; m_kinesisStreamSourceDescription = value; } /** *

The KinesisStreamSourceDescription value for the source Kinesis data * stream.

*/ inline void SetKinesisStreamSourceDescription(KinesisStreamSourceDescription&& value) { m_kinesisStreamSourceDescriptionHasBeenSet = true; m_kinesisStreamSourceDescription = std::move(value); } /** *

The KinesisStreamSourceDescription value for the source Kinesis data * stream.

*/ inline SourceDescription& WithKinesisStreamSourceDescription(const KinesisStreamSourceDescription& value) { SetKinesisStreamSourceDescription(value); return *this;} /** *

The KinesisStreamSourceDescription value for the source Kinesis data * stream.

*/ inline SourceDescription& WithKinesisStreamSourceDescription(KinesisStreamSourceDescription&& value) { SetKinesisStreamSourceDescription(std::move(value)); return *this;} private: KinesisStreamSourceDescription m_kinesisStreamSourceDescription; bool m_kinesisStreamSourceDescriptionHasBeenSet; }; } // namespace Model } // namespace Firehose } // namespace Aws