/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a specific dashboard.See Also:
AWS
* API Reference
The name of the dashboard.
*/ inline const Aws::String& GetDashboardName() const{ return m_dashboardName; } /** *The name of the dashboard.
*/ inline bool DashboardNameHasBeenSet() const { return m_dashboardNameHasBeenSet; } /** *The name of the dashboard.
*/ inline void SetDashboardName(const Aws::String& value) { m_dashboardNameHasBeenSet = true; m_dashboardName = value; } /** *The name of the dashboard.
*/ inline void SetDashboardName(Aws::String&& value) { m_dashboardNameHasBeenSet = true; m_dashboardName = std::move(value); } /** *The name of the dashboard.
*/ inline void SetDashboardName(const char* value) { m_dashboardNameHasBeenSet = true; m_dashboardName.assign(value); } /** *The name of the dashboard.
*/ inline DashboardEntry& WithDashboardName(const Aws::String& value) { SetDashboardName(value); return *this;} /** *The name of the dashboard.
*/ inline DashboardEntry& WithDashboardName(Aws::String&& value) { SetDashboardName(std::move(value)); return *this;} /** *The name of the dashboard.
*/ inline DashboardEntry& WithDashboardName(const char* value) { SetDashboardName(value); return *this;} /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline const Aws::String& GetDashboardArn() const{ return m_dashboardArn; } /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline bool DashboardArnHasBeenSet() const { return m_dashboardArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline void SetDashboardArn(const Aws::String& value) { m_dashboardArnHasBeenSet = true; m_dashboardArn = value; } /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline void SetDashboardArn(Aws::String&& value) { m_dashboardArnHasBeenSet = true; m_dashboardArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline void SetDashboardArn(const char* value) { m_dashboardArnHasBeenSet = true; m_dashboardArn.assign(value); } /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline DashboardEntry& WithDashboardArn(const Aws::String& value) { SetDashboardArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline DashboardEntry& WithDashboardArn(Aws::String&& value) { SetDashboardArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the dashboard.
*/ inline DashboardEntry& WithDashboardArn(const char* value) { SetDashboardArn(value); return *this;} /** *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.
*/ inline const Aws::Utils::DateTime& GetLastModified() const{ return m_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.
*/ inline bool LastModifiedHasBeenSet() const { return m_lastModifiedHasBeenSet; } /** *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.
*/ inline void SetLastModified(const Aws::Utils::DateTime& value) { m_lastModifiedHasBeenSet = true; m_lastModified = value; } /** *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.
*/ inline void SetLastModified(Aws::Utils::DateTime&& value) { m_lastModifiedHasBeenSet = true; m_lastModified = std::move(value); } /** *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.
*/ inline DashboardEntry& WithLastModified(const Aws::Utils::DateTime& value) { SetLastModified(value); return *this;} /** *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.
*/ inline DashboardEntry& WithLastModified(Aws::Utils::DateTime&& value) { SetLastModified(std::move(value)); return *this;} /** *The size of the dashboard, in bytes.
*/ inline long long GetSize() const{ return m_size; } /** *The size of the dashboard, in bytes.
*/ inline bool SizeHasBeenSet() const { return m_sizeHasBeenSet; } /** *The size of the dashboard, in bytes.
*/ inline void SetSize(long long value) { m_sizeHasBeenSet = true; m_size = value; } /** *The size of the dashboard, in bytes.
*/ inline DashboardEntry& WithSize(long long value) { SetSize(value); return *this;} private: Aws::String m_dashboardName; bool m_dashboardNameHasBeenSet = false; Aws::String m_dashboardArn; bool m_dashboardArnHasBeenSet = false; Aws::Utils::DateTime m_lastModified; bool m_lastModifiedHasBeenSet = false; long long m_size; bool m_sizeHasBeenSet = false; }; } // namespace Model } // namespace CloudWatch } // namespace Aws