/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the Amazon S3 Glacier response to your request.See
* Also:
AWS
* API Reference
The relative URI path of the job.
*/ inline const Aws::String& GetLocation() const{ return m_location; } /** *The relative URI path of the job.
*/ inline void SetLocation(const Aws::String& value) { m_location = value; } /** *The relative URI path of the job.
*/ inline void SetLocation(Aws::String&& value) { m_location = std::move(value); } /** *The relative URI path of the job.
*/ inline void SetLocation(const char* value) { m_location.assign(value); } /** *The relative URI path of the job.
*/ inline InitiateJobResult& WithLocation(const Aws::String& value) { SetLocation(value); return *this;} /** *The relative URI path of the job.
*/ inline InitiateJobResult& WithLocation(Aws::String&& value) { SetLocation(std::move(value)); return *this;} /** *The relative URI path of the job.
*/ inline InitiateJobResult& WithLocation(const char* value) { SetLocation(value); return *this;} /** *The ID of the job.
*/ inline const Aws::String& GetJobId() const{ return m_jobId; } /** *The ID of the job.
*/ inline void SetJobId(const Aws::String& value) { m_jobId = value; } /** *The ID of the job.
*/ inline void SetJobId(Aws::String&& value) { m_jobId = std::move(value); } /** *The ID of the job.
*/ inline void SetJobId(const char* value) { m_jobId.assign(value); } /** *The ID of the job.
*/ inline InitiateJobResult& WithJobId(const Aws::String& value) { SetJobId(value); return *this;} /** *The ID of the job.
*/ inline InitiateJobResult& WithJobId(Aws::String&& value) { SetJobId(std::move(value)); return *this;} /** *The ID of the job.
*/ inline InitiateJobResult& WithJobId(const char* value) { SetJobId(value); return *this;} /** *The path to the location of where the select results are stored.
*/ inline const Aws::String& GetJobOutputPath() const{ return m_jobOutputPath; } /** *The path to the location of where the select results are stored.
*/ inline void SetJobOutputPath(const Aws::String& value) { m_jobOutputPath = value; } /** *The path to the location of where the select results are stored.
*/ inline void SetJobOutputPath(Aws::String&& value) { m_jobOutputPath = std::move(value); } /** *The path to the location of where the select results are stored.
*/ inline void SetJobOutputPath(const char* value) { m_jobOutputPath.assign(value); } /** *The path to the location of where the select results are stored.
*/ inline InitiateJobResult& WithJobOutputPath(const Aws::String& value) { SetJobOutputPath(value); return *this;} /** *The path to the location of where the select results are stored.
*/ inline InitiateJobResult& WithJobOutputPath(Aws::String&& value) { SetJobOutputPath(std::move(value)); return *this;} /** *The path to the location of where the select results are stored.
*/ inline InitiateJobResult& WithJobOutputPath(const char* value) { SetJobOutputPath(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 InitiateJobResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline InitiateJobResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline InitiateJobResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_location; Aws::String m_jobId; Aws::String m_jobOutputPath; Aws::String m_requestId; }; } // namespace Model } // namespace Glacier } // namespace Aws