85 lines
2.5 KiB
C++
85 lines
2.5 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/snowball/Snowball_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 Snowball
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_SNOWBALL_API GetJobManifestResult
|
|
{
|
|
public:
|
|
GetJobManifestResult();
|
|
GetJobManifestResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
GetJobManifestResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline const Aws::String& GetManifestURI() const{ return m_manifestURI; }
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline void SetManifestURI(const Aws::String& value) { m_manifestURI = value; }
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline void SetManifestURI(Aws::String&& value) { m_manifestURI = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline void SetManifestURI(const char* value) { m_manifestURI.assign(value); }
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline GetJobManifestResult& WithManifestURI(const Aws::String& value) { SetManifestURI(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline GetJobManifestResult& WithManifestURI(Aws::String&& value) { SetManifestURI(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon S3 presigned URL for the manifest file associated with the
|
|
* specified <code>JobId</code> value.</p>
|
|
*/
|
|
inline GetJobManifestResult& WithManifestURI(const char* value) { SetManifestURI(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_manifestURI;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Snowball
|
|
} // namespace Aws
|