/*
* 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 athena-2017-05-18.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.Athena.Model
{
///
/// The query execution timeline, statistics on input and output rows and bytes, and the
/// different query stages that form the query execution plan.
///
public partial class QueryRuntimeStatistics
{
private QueryStage _outputStage;
private QueryRuntimeStatisticsRows _rows;
private QueryRuntimeStatisticsTimeline _timeline;
///
/// Gets and sets the property OutputStage.
///
/// Stage statistics such as input and output rows and bytes, execution time, and stage
/// state. This information also includes substages and the query stage plan.
///
///
public QueryStage OutputStage
{
get { return this._outputStage; }
set { this._outputStage = value; }
}
// Check to see if OutputStage property is set
internal bool IsSetOutputStage()
{
return this._outputStage != null;
}
///
/// Gets and sets the property Rows.
///
public QueryRuntimeStatisticsRows Rows
{
get { return this._rows; }
set { this._rows = value; }
}
// Check to see if Rows property is set
internal bool IsSetRows()
{
return this._rows != null;
}
///
/// Gets and sets the property Timeline.
///
public QueryRuntimeStatisticsTimeline Timeline
{
get { return this._timeline; }
set { this._timeline = value; }
}
// Check to see if Timeline property is set
internal bool IsSetTimeline()
{
return this._timeline != null;
}
}
}