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

The ARN of the hub that the content was imported into.

*/ inline const Aws::String& GetHubArn() const{ return m_hubArn; } /** *

The ARN of the hub that the content was imported into.

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

The ARN of the hub that the content was imported into.

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

The ARN of the hub that the content was imported into.

*/ inline void SetHubArn(const char* value) { m_hubArn.assign(value); } /** *

The ARN of the hub that the content was imported into.

*/ inline ImportHubContentResult& WithHubArn(const Aws::String& value) { SetHubArn(value); return *this;} /** *

The ARN of the hub that the content was imported into.

*/ inline ImportHubContentResult& WithHubArn(Aws::String&& value) { SetHubArn(std::move(value)); return *this;} /** *

The ARN of the hub that the content was imported into.

*/ inline ImportHubContentResult& WithHubArn(const char* value) { SetHubArn(value); return *this;} /** *

The ARN of the hub content that was imported.

*/ inline const Aws::String& GetHubContentArn() const{ return m_hubContentArn; } /** *

The ARN of the hub content that was imported.

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

The ARN of the hub content that was imported.

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

The ARN of the hub content that was imported.

*/ inline void SetHubContentArn(const char* value) { m_hubContentArn.assign(value); } /** *

The ARN of the hub content that was imported.

*/ inline ImportHubContentResult& WithHubContentArn(const Aws::String& value) { SetHubContentArn(value); return *this;} /** *

The ARN of the hub content that was imported.

*/ inline ImportHubContentResult& WithHubContentArn(Aws::String&& value) { SetHubContentArn(std::move(value)); return *this;} /** *

The ARN of the hub content that was imported.

*/ inline ImportHubContentResult& WithHubContentArn(const char* value) { SetHubContentArn(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 ImportHubContentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ImportHubContentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ImportHubContentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_hubArn; Aws::String m_hubContentArn; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws