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

The Amazon Resource Name (ARN) of the lifecycle configuration.

*/ inline const Aws::String& GetNotebookInstanceLifecycleConfigArn() const{ return m_notebookInstanceLifecycleConfigArn; } /** *

The Amazon Resource Name (ARN) of the lifecycle configuration.

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

The Amazon Resource Name (ARN) of the lifecycle configuration.

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

The Amazon Resource Name (ARN) of the lifecycle configuration.

*/ inline void SetNotebookInstanceLifecycleConfigArn(const char* value) { m_notebookInstanceLifecycleConfigArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the lifecycle configuration.

*/ inline CreateNotebookInstanceLifecycleConfigResult& WithNotebookInstanceLifecycleConfigArn(const Aws::String& value) { SetNotebookInstanceLifecycleConfigArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the lifecycle configuration.

*/ inline CreateNotebookInstanceLifecycleConfigResult& WithNotebookInstanceLifecycleConfigArn(Aws::String&& value) { SetNotebookInstanceLifecycleConfigArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the lifecycle configuration.

*/ inline CreateNotebookInstanceLifecycleConfigResult& WithNotebookInstanceLifecycleConfigArn(const char* value) { SetNotebookInstanceLifecycleConfigArn(value); return *this;} private: Aws::String m_notebookInstanceLifecycleConfigArn; }; } // namespace Model } // namespace SageMaker } // namespace Aws