/*
* 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 entityresolution-2018-05-10.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.EntityResolution.Model
{
///
/// An object containing InputRecords
, TotalRecordsProcessed
,
/// MatchIDs
, and RecordsNotProcessed
.
///
public partial class JobMetrics
{
private int? _inputRecords;
private int? _matchiDs;
private int? _recordsNotProcessed;
private int? _totalRecordsProcessed;
///
/// Gets and sets the property InputRecords.
///
/// The total number of input records.
///
///
public int InputRecords
{
get { return this._inputRecords.GetValueOrDefault(); }
set { this._inputRecords = value; }
}
// Check to see if InputRecords property is set
internal bool IsSetInputRecords()
{
return this._inputRecords.HasValue;
}
///
/// Gets and sets the property MatchIDs.
///
/// The total number of matchID
s generated.
///
///
public int MatchIDs
{
get { return this._matchiDs.GetValueOrDefault(); }
set { this._matchiDs = value; }
}
// Check to see if MatchIDs property is set
internal bool IsSetMatchIDs()
{
return this._matchiDs.HasValue;
}
///
/// Gets and sets the property RecordsNotProcessed.
///
/// The total number of records that did not get processed,
///
///
public int RecordsNotProcessed
{
get { return this._recordsNotProcessed.GetValueOrDefault(); }
set { this._recordsNotProcessed = value; }
}
// Check to see if RecordsNotProcessed property is set
internal bool IsSetRecordsNotProcessed()
{
return this._recordsNotProcessed.HasValue;
}
///
/// Gets and sets the property TotalRecordsProcessed.
///
/// The total number of records processed.
///
///
public int TotalRecordsProcessed
{
get { return this._totalRecordsProcessed.GetValueOrDefault(); }
set { this._totalRecordsProcessed = value; }
}
// Check to see if TotalRecordsProcessed property is set
internal bool IsSetTotalRecordsProcessed()
{
return this._totalRecordsProcessed.HasValue;
}
}
}