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

Returns the Amazon S3 URI for the working location.

*/ inline const Aws::String& GetS3Uri() const{ return m_s3Uri; } /** *

Returns the Amazon S3 URI for the working location.

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

Returns the Amazon S3 URI for the working location.

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

Returns the Amazon S3 URI for the working location.

*/ inline void SetS3Uri(const char* value) { m_s3Uri.assign(value); } /** *

Returns the Amazon S3 URI for the working location.

*/ inline GetWorkingLocationResult& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;} /** *

Returns the Amazon S3 URI for the working location.

*/ inline GetWorkingLocationResult& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;} /** *

Returns the Amazon S3 URI for the working location.

*/ inline GetWorkingLocationResult& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} /** *

Returns the Amazon S3 Path for the working location.

*/ inline const Aws::String& GetS3Path() const{ return m_s3Path; } /** *

Returns the Amazon S3 Path for the working location.

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

Returns the Amazon S3 Path for the working location.

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

Returns the Amazon S3 Path for the working location.

*/ inline void SetS3Path(const char* value) { m_s3Path.assign(value); } /** *

Returns the Amazon S3 Path for the working location.

*/ inline GetWorkingLocationResult& WithS3Path(const Aws::String& value) { SetS3Path(value); return *this;} /** *

Returns the Amazon S3 Path for the working location.

*/ inline GetWorkingLocationResult& WithS3Path(Aws::String&& value) { SetS3Path(std::move(value)); return *this;} /** *

Returns the Amazon S3 Path for the working location.

*/ inline GetWorkingLocationResult& WithS3Path(const char* value) { SetS3Path(value); return *this;} /** *

Returns the Amazon S3 bucket name for the working location.

*/ inline const Aws::String& GetS3Bucket() const{ return m_s3Bucket; } /** *

Returns the Amazon S3 bucket name for the working location.

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

Returns the Amazon S3 bucket name for the working location.

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

Returns the Amazon S3 bucket name for the working location.

*/ inline void SetS3Bucket(const char* value) { m_s3Bucket.assign(value); } /** *

Returns the Amazon S3 bucket name for the working location.

*/ inline GetWorkingLocationResult& WithS3Bucket(const Aws::String& value) { SetS3Bucket(value); return *this;} /** *

Returns the Amazon S3 bucket name for the working location.

*/ inline GetWorkingLocationResult& WithS3Bucket(Aws::String&& value) { SetS3Bucket(std::move(value)); return *this;} /** *

Returns the Amazon S3 bucket name for the working location.

*/ inline GetWorkingLocationResult& WithS3Bucket(const char* value) { SetS3Bucket(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetWorkingLocationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetWorkingLocationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetWorkingLocationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_s3Uri; Aws::String m_s3Path; Aws::String m_s3Bucket; Aws::String m_requestId; }; } // namespace Model } // namespace FinSpaceData } // namespace Aws