/** * 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 Snowball { namespace Model { class AWS_SNOWBALL_API GetJobManifestResult { public: GetJobManifestResult(); GetJobManifestResult(const Aws::AmazonWebServiceResult& result); GetJobManifestResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

*/ inline const Aws::String& GetManifestURI() const{ return m_manifestURI; } /** *

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

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

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

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

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

*/ inline void SetManifestURI(const char* value) { m_manifestURI.assign(value); } /** *

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

*/ inline GetJobManifestResult& WithManifestURI(const Aws::String& value) { SetManifestURI(value); return *this;} /** *

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

*/ inline GetJobManifestResult& WithManifestURI(Aws::String&& value) { SetManifestURI(std::move(value)); return *this;} /** *

The Amazon S3 presigned URL for the manifest file associated with the * specified JobId value.

*/ inline GetJobManifestResult& WithManifestURI(const char* value) { SetManifestURI(value); return *this;} private: Aws::String m_manifestURI; }; } // namespace Model } // namespace Snowball } // namespace Aws