/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { class DescribeLineageGroupResult { public: AWS_SAGEMAKER_API DescribeLineageGroupResult(); AWS_SAGEMAKER_API DescribeLineageGroupResult(const Aws::AmazonWebServiceResult& result); AWS_SAGEMAKER_API DescribeLineageGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the lineage group.

*/ inline const Aws::String& GetLineageGroupName() const{ return m_lineageGroupName; } /** *

The name of the lineage group.

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

The name of the lineage group.

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

The name of the lineage group.

*/ inline void SetLineageGroupName(const char* value) { m_lineageGroupName.assign(value); } /** *

The name of the lineage group.

*/ inline DescribeLineageGroupResult& WithLineageGroupName(const Aws::String& value) { SetLineageGroupName(value); return *this;} /** *

The name of the lineage group.

*/ inline DescribeLineageGroupResult& WithLineageGroupName(Aws::String&& value) { SetLineageGroupName(std::move(value)); return *this;} /** *

The name of the lineage group.

*/ inline DescribeLineageGroupResult& WithLineageGroupName(const char* value) { SetLineageGroupName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the lineage group.

*/ inline const Aws::String& GetLineageGroupArn() const{ return m_lineageGroupArn; } /** *

The Amazon Resource Name (ARN) of the lineage group.

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

The Amazon Resource Name (ARN) of the lineage group.

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

The Amazon Resource Name (ARN) of the lineage group.

*/ inline void SetLineageGroupArn(const char* value) { m_lineageGroupArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the lineage group.

*/ inline DescribeLineageGroupResult& WithLineageGroupArn(const Aws::String& value) { SetLineageGroupArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the lineage group.

*/ inline DescribeLineageGroupResult& WithLineageGroupArn(Aws::String&& value) { SetLineageGroupArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the lineage group.

*/ inline DescribeLineageGroupResult& WithLineageGroupArn(const char* value) { SetLineageGroupArn(value); return *this;} /** *

The display name of the lineage group.

*/ inline const Aws::String& GetDisplayName() const{ return m_displayName; } /** *

The display name of the lineage group.

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

The display name of the lineage group.

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

The display name of the lineage group.

*/ inline void SetDisplayName(const char* value) { m_displayName.assign(value); } /** *

The display name of the lineage group.

*/ inline DescribeLineageGroupResult& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;} /** *

The display name of the lineage group.

*/ inline DescribeLineageGroupResult& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;} /** *

The display name of the lineage group.

*/ inline DescribeLineageGroupResult& WithDisplayName(const char* value) { SetDisplayName(value); return *this;} /** *

The description of the lineage group.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the lineage group.

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

The description of the lineage group.

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

The description of the lineage group.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

The description of the lineage group.

*/ inline DescribeLineageGroupResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the lineage group.

*/ inline DescribeLineageGroupResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the lineage group.

*/ inline DescribeLineageGroupResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The creation time of lineage group.

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The creation time of lineage group.

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

The creation time of lineage group.

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

The creation time of lineage group.

*/ inline DescribeLineageGroupResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The creation time of lineage group.

*/ inline DescribeLineageGroupResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} inline const UserContext& GetCreatedBy() const{ return m_createdBy; } inline void SetCreatedBy(const UserContext& value) { m_createdBy = value; } inline void SetCreatedBy(UserContext&& value) { m_createdBy = std::move(value); } inline DescribeLineageGroupResult& WithCreatedBy(const UserContext& value) { SetCreatedBy(value); return *this;} inline DescribeLineageGroupResult& WithCreatedBy(UserContext&& value) { SetCreatedBy(std::move(value)); return *this;} /** *

The last modified time of the lineage group.

*/ inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; } /** *

The last modified time of the lineage group.

*/ inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTime = value; } /** *

The last modified time of the lineage group.

*/ inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTime = std::move(value); } /** *

The last modified time of the lineage group.

*/ inline DescribeLineageGroupResult& WithLastModifiedTime(const Aws::Utils::DateTime& value) { SetLastModifiedTime(value); return *this;} /** *

The last modified time of the lineage group.

*/ inline DescribeLineageGroupResult& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;} inline const UserContext& GetLastModifiedBy() const{ return m_lastModifiedBy; } inline void SetLastModifiedBy(const UserContext& value) { m_lastModifiedBy = value; } inline void SetLastModifiedBy(UserContext&& value) { m_lastModifiedBy = std::move(value); } inline DescribeLineageGroupResult& WithLastModifiedBy(const UserContext& value) { SetLastModifiedBy(value); return *this;} inline DescribeLineageGroupResult& WithLastModifiedBy(UserContext&& value) { SetLastModifiedBy(std::move(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 DescribeLineageGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeLineageGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeLineageGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_lineageGroupName; Aws::String m_lineageGroupArn; Aws::String m_displayName; Aws::String m_description; Aws::Utils::DateTime m_creationTime; UserContext m_createdBy; Aws::Utils::DateTime m_lastModifiedTime; UserContext m_lastModifiedBy; Aws::String m_requestId; }; } // namespace Model } // namespace SageMaker } // namespace Aws