/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the sagemaker-2017-07-24.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.SageMaker.Model { /// /// This is the response object from the QueryLineage operation. /// public partial class QueryLineageResponse : AmazonWebServiceResponse { private List _edges = new List(); private string _nextToken; private List _vertices = new List(); /// /// Gets and sets the property Edges. /// /// A list of edges that connect vertices in the response. /// /// public List Edges { get { return this._edges; } set { this._edges = value; } } // Check to see if Edges property is set internal bool IsSetEdges() { return this._edges != null && this._edges.Count > 0; } /// /// Gets and sets the property NextToken. /// /// Limits the number of vertices in the response. Use the NextToken in a /// response to to retrieve the next page of results. /// /// [AWSProperty(Max=8192)] public string NextToken { get { return this._nextToken; } set { this._nextToken = value; } } // Check to see if NextToken property is set internal bool IsSetNextToken() { return this._nextToken != null; } /// /// Gets and sets the property Vertices. /// /// A list of vertices connected to the start entity(ies) in the lineage graph. /// /// public List Vertices { get { return this._vertices; } set { this._vertices = value; } } // Check to see if Vertices property is set internal bool IsSetVertices() { return this._vertices != null && this._vertices.Count > 0; } } }