/** * 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 GetDASHStreamingSessionURLResult { public: AWS_KINESISVIDEOARCHIVEDMEDIA_API GetDASHStreamingSessionURLResult(); AWS_KINESISVIDEOARCHIVEDMEDIA_API GetDASHStreamingSessionURLResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISVIDEOARCHIVEDMEDIA_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetDASHStreamingSessionURLResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDASHStreamingSessionURLResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDASHStreamingSessionURLResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_dASHStreamingSessionURL; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisVideoArchivedMedia } // namespace Aws