/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output for DescribeStream
.See
* Also:
AWS
* API Reference
The current status of the stream, the stream Amazon Resource Name (ARN), an * array of shard objects that comprise the stream, and whether there are more * shards available.
*/ inline const StreamDescription& GetStreamDescription() const{ return m_streamDescription; } /** *The current status of the stream, the stream Amazon Resource Name (ARN), an * array of shard objects that comprise the stream, and whether there are more * shards available.
*/ inline void SetStreamDescription(const StreamDescription& value) { m_streamDescription = value; } /** *The current status of the stream, the stream Amazon Resource Name (ARN), an * array of shard objects that comprise the stream, and whether there are more * shards available.
*/ inline void SetStreamDescription(StreamDescription&& value) { m_streamDescription = std::move(value); } /** *The current status of the stream, the stream Amazon Resource Name (ARN), an * array of shard objects that comprise the stream, and whether there are more * shards available.
*/ inline DescribeStreamResult& WithStreamDescription(const StreamDescription& value) { SetStreamDescription(value); return *this;} /** *The current status of the stream, the stream Amazon Resource Name (ARN), an * array of shard objects that comprise the stream, and whether there are more * shards available.
*/ inline DescribeStreamResult& WithStreamDescription(StreamDescription&& value) { SetStreamDescription(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeStreamResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeStreamResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeStreamResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: StreamDescription m_streamDescription; Aws::String m_requestId; }; } // namespace Model } // namespace Kinesis } // namespace Aws