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

The Amazon Resource Name (ARN) of the Explainability.

*/ inline const Aws::String& GetExplainabilityArn() const{ return m_explainabilityArn; } /** *

The Amazon Resource Name (ARN) of the Explainability.

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

The Amazon Resource Name (ARN) of the Explainability.

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

The Amazon Resource Name (ARN) of the Explainability.

*/ inline void SetExplainabilityArn(const char* value) { m_explainabilityArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the Explainability.

*/ inline CreateExplainabilityResult& WithExplainabilityArn(const Aws::String& value) { SetExplainabilityArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability.

*/ inline CreateExplainabilityResult& WithExplainabilityArn(Aws::String&& value) { SetExplainabilityArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Explainability.

*/ inline CreateExplainabilityResult& WithExplainabilityArn(const char* value) { SetExplainabilityArn(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 CreateExplainabilityResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateExplainabilityResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateExplainabilityResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_explainabilityArn; Aws::String m_requestId; }; } // namespace Model } // namespace ForecastService } // namespace Aws