/*
* 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 iotanalytics-2017-11-27.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.IoTAnalytics.Model
{
///
/// Summary information about dataset contents.
///
public partial class DatasetContentSummary
{
private DateTime? _completionTime;
private DateTime? _creationTime;
private DateTime? _scheduleTime;
private DatasetContentStatus _status;
private string _version;
///
/// Gets and sets the property CompletionTime.
///
/// The time the dataset content status was updated to SUCCEEDED or FAILED.
///
///
public DateTime CompletionTime
{
get { return this._completionTime.GetValueOrDefault(); }
set { this._completionTime = value; }
}
// Check to see if CompletionTime property is set
internal bool IsSetCompletionTime()
{
return this._completionTime.HasValue;
}
///
/// Gets and sets the property CreationTime.
///
/// The actual time the creation of the dataset contents was started.
///
///
public DateTime CreationTime
{
get { return this._creationTime.GetValueOrDefault(); }
set { this._creationTime = value; }
}
// Check to see if CreationTime property is set
internal bool IsSetCreationTime()
{
return this._creationTime.HasValue;
}
///
/// Gets and sets the property ScheduleTime.
///
/// The time the creation of the dataset contents was scheduled to start.
///
///
public DateTime ScheduleTime
{
get { return this._scheduleTime.GetValueOrDefault(); }
set { this._scheduleTime = value; }
}
// Check to see if ScheduleTime property is set
internal bool IsSetScheduleTime()
{
return this._scheduleTime.HasValue;
}
///
/// Gets and sets the property Status.
///
/// The status of the dataset contents.
///
///
public DatasetContentStatus Status
{
get { return this._status; }
set { this._status = value; }
}
// Check to see if Status property is set
internal bool IsSetStatus()
{
return this._status != null;
}
///
/// Gets and sets the property Version.
///
/// The version of the dataset contents.
///
///
[AWSProperty(Min=7, Max=36)]
public string Version
{
get { return this._version; }
set { this._version = value; }
}
// Check to see if Version property is set
internal bool IsSetVersion()
{
return this._version != null;
}
}
}