/* * 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 monitoring-2010-08-01.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.CloudWatch.Model { /// /// Represents a specific dashboard. /// public partial class DashboardEntry { private string _dashboardArn; private string _dashboardName; private DateTime? _lastModified; private long? _size; /// /// Gets and sets the property DashboardArn. /// /// The Amazon Resource Name (ARN) of the dashboard. /// /// public string DashboardArn { get { return this._dashboardArn; } set { this._dashboardArn = value; } } // Check to see if DashboardArn property is set internal bool IsSetDashboardArn() { return this._dashboardArn != null; } /// /// Gets and sets the property DashboardName. /// /// The name of the dashboard. /// /// public string DashboardName { get { return this._dashboardName; } set { this._dashboardName = value; } } // Check to see if DashboardName property is set internal bool IsSetDashboardName() { return this._dashboardName != null; } /// /// Gets and sets the property LastModified. /// /// The time stamp of when the dashboard was last modified, either by an API call or through /// the console. This number is expressed as the number of milliseconds since Jan 1, 1970 /// 00:00:00 UTC. /// /// public DateTime LastModified { get { return this._lastModified.GetValueOrDefault(); } set { this._lastModified = value; } } // Check to see if LastModified property is set internal bool IsSetLastModified() { return this._lastModified.HasValue; } /// /// Gets and sets the property Size. /// /// The size of the dashboard, in bytes. /// /// public long Size { get { return this._size.GetValueOrDefault(); } set { this._size = value; } } // Check to see if Size property is set internal bool IsSetSize() { return this._size.HasValue; } } }