/** * 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 GetDASHStreamingSessionURLResult { public: GetDASHStreamingSessionURLResult(); GetDASHStreamingSessionURLResult(const Aws::AmazonWebServiceResult& result); GetDASHStreamingSessionURLResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

*/ inline const Aws::String& GetDASHStreamingSessionURL() const{ return m_dASHStreamingSessionURL; } /** *

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

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

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

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

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

*/ inline void SetDASHStreamingSessionURL(const char* value) { m_dASHStreamingSessionURL.assign(value); } /** *

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

*/ inline GetDASHStreamingSessionURLResult& WithDASHStreamingSessionURL(const Aws::String& value) { SetDASHStreamingSessionURL(value); return *this;} /** *

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

*/ inline GetDASHStreamingSessionURLResult& WithDASHStreamingSessionURL(Aws::String&& value) { SetDASHStreamingSessionURL(std::move(value)); return *this;} /** *

The URL (containing the session token) that a media player can use to * retrieve the MPEG-DASH manifest.

*/ inline GetDASHStreamingSessionURLResult& WithDASHStreamingSessionURL(const char* value) { SetDASHStreamingSessionURL(value); return *this;} private: Aws::String m_dASHStreamingSessionURL; }; } // namespace Model } // namespace KinesisVideoArchivedMedia } // namespace Aws