/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template 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& result); GetHLSStreamingSessionURLResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline const Aws::String& GetHLSStreamingSessionURL() const{ return m_hLSStreamingSessionURL; } /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline void SetHLSStreamingSessionURL(const Aws::String& value) { m_hLSStreamingSessionURL = value; } /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline void SetHLSStreamingSessionURL(Aws::String&& value) { m_hLSStreamingSessionURL = std::move(value); } /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline void SetHLSStreamingSessionURL(const char* value) { m_hLSStreamingSessionURL.assign(value); } /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline GetHLSStreamingSessionURLResult& WithHLSStreamingSessionURL(const Aws::String& value) { SetHLSStreamingSessionURL(value); return *this;} /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline GetHLSStreamingSessionURLResult& WithHLSStreamingSessionURL(Aws::String&& value) { SetHLSStreamingSessionURL(std::move(value)); return *this;} /** *

The URL (containing the session token) that a media player can use to * retrieve the HLS master playlist.

*/ inline GetHLSStreamingSessionURLResult& WithHLSStreamingSessionURL(const char* value) { SetHLSStreamingSessionURL(value); return *this;} private: Aws::String m_hLSStreamingSessionURL; }; } // namespace Model } // namespace KinesisVideoArchivedMedia } // namespace Aws