/* * 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 kinesisvideo-2017-09-30.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.KinesisVideo.Model { /// /// The latest status of a stream's edge recording job. /// public partial class LastRecorderStatus { private string _jobStatusDetails; private DateTime? _lastCollectedTime; private DateTime? _lastUpdatedTime; private RecorderStatus _recorderStatus; /// /// Gets and sets the property JobStatusDetails. /// /// A description of a recorder job’s latest status. /// /// public string JobStatusDetails { get { return this._jobStatusDetails; } set { this._jobStatusDetails = value; } } // Check to see if JobStatusDetails property is set internal bool IsSetJobStatusDetails() { return this._jobStatusDetails != null; } /// /// Gets and sets the property LastCollectedTime. /// /// The timestamp at which the recorder job was last executed and media stored to local /// disk. /// /// public DateTime LastCollectedTime { get { return this._lastCollectedTime.GetValueOrDefault(); } set { this._lastCollectedTime = value; } } // Check to see if LastCollectedTime property is set internal bool IsSetLastCollectedTime() { return this._lastCollectedTime.HasValue; } /// /// Gets and sets the property LastUpdatedTime. /// /// The timestamp at which the recorder status was last updated. /// /// public DateTime LastUpdatedTime { get { return this._lastUpdatedTime.GetValueOrDefault(); } set { this._lastUpdatedTime = value; } } // Check to see if LastUpdatedTime property is set internal bool IsSetLastUpdatedTime() { return this._lastUpdatedTime.HasValue; } /// /// Gets and sets the property RecorderStatus. /// /// The status of the latest recorder job. /// /// public RecorderStatus RecorderStatus { get { return this._recorderStatus; } set { this._recorderStatus = value; } } // Check to see if RecorderStatus property is set internal bool IsSetRecorderStatus() { return this._recorderStatus != null; } } }