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

The ARN of the task created by the request.

*/ inline const Aws::String& GetQuantumTaskArn() const{ return m_quantumTaskArn; } /** *

The ARN of the task created by the request.

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

The ARN of the task created by the request.

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

The ARN of the task created by the request.

*/ inline void SetQuantumTaskArn(const char* value) { m_quantumTaskArn.assign(value); } /** *

The ARN of the task created by the request.

*/ inline CreateQuantumTaskResult& WithQuantumTaskArn(const Aws::String& value) { SetQuantumTaskArn(value); return *this;} /** *

The ARN of the task created by the request.

*/ inline CreateQuantumTaskResult& WithQuantumTaskArn(Aws::String&& value) { SetQuantumTaskArn(std::move(value)); return *this;} /** *

The ARN of the task created by the request.

*/ inline CreateQuantumTaskResult& WithQuantumTaskArn(const char* value) { SetQuantumTaskArn(value); return *this;} private: Aws::String m_quantumTaskArn; }; } // namespace Model } // namespace Braket } // namespace Aws