/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A lineage entity connected to the starting entity(ies).See
* Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline Vertex& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline Vertex& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the lineage entity resource.
*/ inline Vertex& WithArn(const char* value) { SetArn(value); return *this;} /** *The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of the lineage entity resource. For example: DataSet
,
* Model
, Endpoint
, etc...
The type of resource of the lineage entity.
*/ inline const LineageType& GetLineageType() const{ return m_lineageType; } /** *The type of resource of the lineage entity.
*/ inline bool LineageTypeHasBeenSet() const { return m_lineageTypeHasBeenSet; } /** *The type of resource of the lineage entity.
*/ inline void SetLineageType(const LineageType& value) { m_lineageTypeHasBeenSet = true; m_lineageType = value; } /** *The type of resource of the lineage entity.
*/ inline void SetLineageType(LineageType&& value) { m_lineageTypeHasBeenSet = true; m_lineageType = std::move(value); } /** *The type of resource of the lineage entity.
*/ inline Vertex& WithLineageType(const LineageType& value) { SetLineageType(value); return *this;} /** *The type of resource of the lineage entity.
*/ inline Vertex& WithLineageType(LineageType&& value) { SetLineageType(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_type; bool m_typeHasBeenSet = false; LineageType m_lineageType; bool m_lineageTypeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws