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-ivs/include/aws/ivs/model/GetStreamResult.h

58 lines
1.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ivs/IVS_EXPORTS.h>
#include <aws/ivs/model/Stream.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace IVS
{
namespace Model
{
class AWS_IVS_API GetStreamResult
{
public:
GetStreamResult();
GetStreamResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetStreamResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
inline const Stream& GetStream() const{ return m_stream; }
inline void SetStream(const Stream& value) { m_stream = value; }
inline void SetStream(Stream&& value) { m_stream = std::move(value); }
inline GetStreamResult& WithStream(const Stream& value) { SetStream(value); return *this;}
inline GetStreamResult& WithStream(Stream&& value) { SetStream(std::move(value)); return *this;}
private:
Stream m_stream;
};
} // namespace Model
} // namespace IVS
} // namespace Aws