/** * 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 GameLift { namespace Model { /** *

Represents the returned data in response to a request action.

See * Also:

AWS * API Reference

*/ class AWS_GAMELIFT_API GetGameSessionLogUrlResult { public: GetGameSessionLogUrlResult(); GetGameSessionLogUrlResult(const Aws::AmazonWebServiceResult& result); GetGameSessionLogUrlResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

*/ inline const Aws::String& GetPreSignedUrl() const{ return m_preSignedUrl; } /** *

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

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

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

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

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

*/ inline void SetPreSignedUrl(const char* value) { m_preSignedUrl.assign(value); } /** *

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

*/ inline GetGameSessionLogUrlResult& WithPreSignedUrl(const Aws::String& value) { SetPreSignedUrl(value); return *this;} /** *

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

*/ inline GetGameSessionLogUrlResult& WithPreSignedUrl(Aws::String&& value) { SetPreSignedUrl(std::move(value)); return *this;} /** *

Location of the requested game session logs, available for download. This URL * is valid for 15 minutes, after which S3 will reject any download request using * this URL. You can request a new URL any time within the 14-day period that the * logs are retained.

*/ inline GetGameSessionLogUrlResult& WithPreSignedUrl(const char* value) { SetPreSignedUrl(value); return *this;} private: Aws::String m_preSignedUrl; }; } // namespace Model } // namespace GameLift } // namespace Aws