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/CreateStreamKeyResult.h

68 lines
1.7 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/StreamKey.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 CreateStreamKeyResult
{
public:
CreateStreamKeyResult();
CreateStreamKeyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateStreamKeyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Stream key used to authenticate an RTMPS stream for ingestion.</p>
*/
inline const StreamKey& GetStreamKey() const{ return m_streamKey; }
/**
* <p>Stream key used to authenticate an RTMPS stream for ingestion.</p>
*/
inline void SetStreamKey(const StreamKey& value) { m_streamKey = value; }
/**
* <p>Stream key used to authenticate an RTMPS stream for ingestion.</p>
*/
inline void SetStreamKey(StreamKey&& value) { m_streamKey = std::move(value); }
/**
* <p>Stream key used to authenticate an RTMPS stream for ingestion.</p>
*/
inline CreateStreamKeyResult& WithStreamKey(const StreamKey& value) { SetStreamKey(value); return *this;}
/**
* <p>Stream key used to authenticate an RTMPS stream for ingestion.</p>
*/
inline CreateStreamKeyResult& WithStreamKey(StreamKey&& value) { SetStreamKey(std::move(value)); return *this;}
private:
StreamKey m_streamKey;
};
} // namespace Model
} // namespace IVS
} // namespace Aws