105 lines
3.9 KiB
C++
105 lines
3.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/gamelift/GameLift_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace GameLift
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p>Represents the returned data in response to a request action.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/gamelift-2015-10-01/GetGameSessionLogUrlOutput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_GAMELIFT_API GetGameSessionLogUrlResult
|
|
{
|
|
public:
|
|
GetGameSessionLogUrlResult();
|
|
GetGameSessionLogUrlResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetGameSessionLogUrlResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline const Aws::String& GetPreSignedUrl() const{ return m_preSignedUrl; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetPreSignedUrl(const Aws::String& value) { m_preSignedUrl = value; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetPreSignedUrl(Aws::String&& value) { m_preSignedUrl = std::move(value); }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetPreSignedUrl(const char* value) { m_preSignedUrl.assign(value); }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline GetGameSessionLogUrlResult& WithPreSignedUrl(const Aws::String& value) { SetPreSignedUrl(value); return *this;}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline GetGameSessionLogUrlResult& WithPreSignedUrl(Aws::String&& value) { SetPreSignedUrl(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline GetGameSessionLogUrlResult& WithPreSignedUrl(const char* value) { SetPreSignedUrl(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_preSignedUrl;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace GameLift
|
|
} // namespace Aws
|