85 lines
2.8 KiB
C++
85 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/kinesis-video-archived-media/KinesisVideoArchivedMedia_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace KinesisVideoArchivedMedia
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_KINESISVIDEOARCHIVEDMEDIA_API GetHLSStreamingSessionURLResult
|
|
{
|
|
public:
|
|
GetHLSStreamingSessionURLResult();
|
|
GetHLSStreamingSessionURLResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetHLSStreamingSessionURLResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline const Aws::String& GetHLSStreamingSessionURL() const{ return m_hLSStreamingSessionURL; }
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline void SetHLSStreamingSessionURL(const Aws::String& value) { m_hLSStreamingSessionURL = value; }
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline void SetHLSStreamingSessionURL(Aws::String&& value) { m_hLSStreamingSessionURL = std::move(value); }
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline void SetHLSStreamingSessionURL(const char* value) { m_hLSStreamingSessionURL.assign(value); }
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline GetHLSStreamingSessionURLResult& WithHLSStreamingSessionURL(const Aws::String& value) { SetHLSStreamingSessionURL(value); return *this;}
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline GetHLSStreamingSessionURLResult& WithHLSStreamingSessionURL(Aws::String&& value) { SetHLSStreamingSessionURL(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The URL (containing the session token) that a media player can use to
|
|
* retrieve the HLS master playlist.</p>
|
|
*/
|
|
inline GetHLSStreamingSessionURLResult& WithHLSStreamingSessionURL(const char* value) { SetHLSStreamingSessionURL(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_hLSStreamingSessionURL;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace KinesisVideoArchivedMedia
|
|
} // namespace Aws
|