/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Lists a summary of the properties of a lineage group. A lineage group * provides a group of shareable lineage entity resources.

See Also:

* AWS * API Reference

*/ class LineageGroupSummary { public: AWS_SAGEMAKER_API LineageGroupSummary(); AWS_SAGEMAKER_API LineageGroupSummary(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API LineageGroupSummary& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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

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

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

*/ inline bool LineageGroupArnHasBeenSet() const { return m_lineageGroupArnHasBeenSet; } /** *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline bool LineageGroupNameHasBeenSet() const { return m_lineageGroupNameHasBeenSet; } /** *

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

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

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

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

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

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

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

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

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

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

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

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

The display name of the lineage group summary.

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

The display name of the lineage group summary.

*/ inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; } /** *

The display name of the lineage group summary.

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

The display name of the lineage group summary.

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

The display name of the lineage group summary.

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

The display name of the lineage group summary.

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

The display name of the lineage group summary.

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

The display name of the lineage group summary.

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

The creation time of the lineage group summary.

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

The creation time of the lineage group summary.

*/ inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *

The creation time of the lineage group summary.

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

The creation time of the lineage group summary.

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

The creation time of the lineage group summary.

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

The creation time of the lineage group summary.

*/ inline LineageGroupSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The last modified time of the lineage group summary.

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

The last modified time of the lineage group summary.

*/ inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; } /** *

The last modified time of the lineage group summary.

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

The last modified time of the lineage group summary.

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

The last modified time of the lineage group summary.

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

The last modified time of the lineage group summary.

*/ inline LineageGroupSummary& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;} private: Aws::String m_lineageGroupArn; bool m_lineageGroupArnHasBeenSet = false; Aws::String m_lineageGroupName; bool m_lineageGroupNameHasBeenSet = false; Aws::String m_displayName; bool m_displayNameHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; Aws::Utils::DateTime m_lastModifiedTime; bool m_lastModifiedTimeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws