This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-kinesis/include/aws/kinesis/model/DescribeStreamConsumerResult.h

68 lines
1.9 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/kinesis/Kinesis_EXPORTS.h>
#include <aws/kinesis/model/ConsumerDescription.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Kinesis
{
namespace Model
{
class AWS_KINESIS_API DescribeStreamConsumerResult
{
public:
DescribeStreamConsumerResult();
DescribeStreamConsumerResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeStreamConsumerResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>An object that represents the details of the consumer.</p>
*/
inline const ConsumerDescription& GetConsumerDescription() const{ return m_consumerDescription; }
/**
* <p>An object that represents the details of the consumer.</p>
*/
inline void SetConsumerDescription(const ConsumerDescription& value) { m_consumerDescription = value; }
/**
* <p>An object that represents the details of the consumer.</p>
*/
inline void SetConsumerDescription(ConsumerDescription&& value) { m_consumerDescription = std::move(value); }
/**
* <p>An object that represents the details of the consumer.</p>
*/
inline DescribeStreamConsumerResult& WithConsumerDescription(const ConsumerDescription& value) { SetConsumerDescription(value); return *this;}
/**
* <p>An object that represents the details of the consumer.</p>
*/
inline DescribeStreamConsumerResult& WithConsumerDescription(ConsumerDescription&& value) { SetConsumerDescription(std::move(value)); return *this;}
private:
ConsumerDescription m_consumerDescription;
};
} // namespace Model
} // namespace Kinesis
} // namespace Aws