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

When a job is created, it is assigned a unique ARN.

*/ inline const Aws::String& GetAutoMLJobArn() const{ return m_autoMLJobArn; } /** *

When a job is created, it is assigned a unique ARN.

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

When a job is created, it is assigned a unique ARN.

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

When a job is created, it is assigned a unique ARN.

*/ inline void SetAutoMLJobArn(const char* value) { m_autoMLJobArn.assign(value); } /** *

When a job is created, it is assigned a unique ARN.

*/ inline CreateAutoMLJobResult& WithAutoMLJobArn(const Aws::String& value) { SetAutoMLJobArn(value); return *this;} /** *

When a job is created, it is assigned a unique ARN.

*/ inline CreateAutoMLJobResult& WithAutoMLJobArn(Aws::String&& value) { SetAutoMLJobArn(std::move(value)); return *this;} /** *

When a job is created, it is assigned a unique ARN.

*/ inline CreateAutoMLJobResult& WithAutoMLJobArn(const char* value) { SetAutoMLJobArn(value); return *this;} private: Aws::String m_autoMLJobArn; }; } // namespace Model } // namespace SageMaker } // namespace Aws