/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the returned data in response to a request action.See
* Also:
AWS
* API Reference
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