/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoTSiteWise { namespace Model { class DescribeDashboardResult { public: AWS_IOTSITEWISE_API DescribeDashboardResult(); AWS_IOTSITEWISE_API DescribeDashboardResult(const Aws::AmazonWebServiceResult& result); AWS_IOTSITEWISE_API DescribeDashboardResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the dashboard.

*/ inline const Aws::String& GetDashboardId() const{ return m_dashboardId; } /** *

The ID of the dashboard.

*/ inline void SetDashboardId(const Aws::String& value) { m_dashboardId = value; } /** *

The ID of the dashboard.

*/ inline void SetDashboardId(Aws::String&& value) { m_dashboardId = std::move(value); } /** *

The ID of the dashboard.

*/ inline void SetDashboardId(const char* value) { m_dashboardId.assign(value); } /** *

The ID of the dashboard.

*/ inline DescribeDashboardResult& WithDashboardId(const Aws::String& value) { SetDashboardId(value); return *this;} /** *

The ID of the dashboard.

*/ inline DescribeDashboardResult& WithDashboardId(Aws::String&& value) { SetDashboardId(std::move(value)); return *this;} /** *

The ID of the dashboard.

*/ inline DescribeDashboardResult& WithDashboardId(const char* value) { SetDashboardId(value); return *this;} /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline const Aws::String& GetDashboardArn() const{ return m_dashboardArn; } /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline void SetDashboardArn(const Aws::String& value) { m_dashboardArn = value; } /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline void SetDashboardArn(Aws::String&& value) { m_dashboardArn = std::move(value); } /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline void SetDashboardArn(const char* value) { m_dashboardArn.assign(value); } /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline DescribeDashboardResult& WithDashboardArn(const Aws::String& value) { SetDashboardArn(value); return *this;} /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline DescribeDashboardResult& WithDashboardArn(Aws::String&& value) { SetDashboardArn(std::move(value)); return *this;} /** *

The ARN * of the dashboard, which has the following format.

* arn:${Partition}:iotsitewise:${Region}:${Account}:dashboard/${DashboardId} *

*/ inline DescribeDashboardResult& WithDashboardArn(const char* value) { SetDashboardArn(value); return *this;} /** *

The name of the dashboard.

*/ inline const Aws::String& GetDashboardName() const{ return m_dashboardName; } /** *

The name of the dashboard.

*/ inline void SetDashboardName(const Aws::String& value) { m_dashboardName = value; } /** *

The name of the dashboard.

*/ inline void SetDashboardName(Aws::String&& value) { m_dashboardName = std::move(value); } /** *

The name of the dashboard.

*/ inline void SetDashboardName(const char* value) { m_dashboardName.assign(value); } /** *

The name of the dashboard.

*/ inline DescribeDashboardResult& WithDashboardName(const Aws::String& value) { SetDashboardName(value); return *this;} /** *

The name of the dashboard.

*/ inline DescribeDashboardResult& WithDashboardName(Aws::String&& value) { SetDashboardName(std::move(value)); return *this;} /** *

The name of the dashboard.

*/ inline DescribeDashboardResult& WithDashboardName(const char* value) { SetDashboardName(value); return *this;} /** *

The ID of the project that the dashboard is in.

*/ inline const Aws::String& GetProjectId() const{ return m_projectId; } /** *

The ID of the project that the dashboard is in.

*/ inline void SetProjectId(const Aws::String& value) { m_projectId = value; } /** *

The ID of the project that the dashboard is in.

*/ inline void SetProjectId(Aws::String&& value) { m_projectId = std::move(value); } /** *

The ID of the project that the dashboard is in.

*/ inline void SetProjectId(const char* value) { m_projectId.assign(value); } /** *

The ID of the project that the dashboard is in.

*/ inline DescribeDashboardResult& WithProjectId(const Aws::String& value) { SetProjectId(value); return *this;} /** *

The ID of the project that the dashboard is in.

*/ inline DescribeDashboardResult& WithProjectId(Aws::String&& value) { SetProjectId(std::move(value)); return *this;} /** *

The ID of the project that the dashboard is in.

*/ inline DescribeDashboardResult& WithProjectId(const char* value) { SetProjectId(value); return *this;} /** *

The dashboard's description.

*/ inline const Aws::String& GetDashboardDescription() const{ return m_dashboardDescription; } /** *

The dashboard's description.

*/ inline void SetDashboardDescription(const Aws::String& value) { m_dashboardDescription = value; } /** *

The dashboard's description.

*/ inline void SetDashboardDescription(Aws::String&& value) { m_dashboardDescription = std::move(value); } /** *

The dashboard's description.

*/ inline void SetDashboardDescription(const char* value) { m_dashboardDescription.assign(value); } /** *

The dashboard's description.

*/ inline DescribeDashboardResult& WithDashboardDescription(const Aws::String& value) { SetDashboardDescription(value); return *this;} /** *

The dashboard's description.

*/ inline DescribeDashboardResult& WithDashboardDescription(Aws::String&& value) { SetDashboardDescription(std::move(value)); return *this;} /** *

The dashboard's description.

*/ inline DescribeDashboardResult& WithDashboardDescription(const char* value) { SetDashboardDescription(value); return *this;} /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline const Aws::String& GetDashboardDefinition() const{ return m_dashboardDefinition; } /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline void SetDashboardDefinition(const Aws::String& value) { m_dashboardDefinition = value; } /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline void SetDashboardDefinition(Aws::String&& value) { m_dashboardDefinition = std::move(value); } /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline void SetDashboardDefinition(const char* value) { m_dashboardDefinition.assign(value); } /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline DescribeDashboardResult& WithDashboardDefinition(const Aws::String& value) { SetDashboardDefinition(value); return *this;} /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline DescribeDashboardResult& WithDashboardDefinition(Aws::String&& value) { SetDashboardDefinition(std::move(value)); return *this;} /** *

The dashboard's definition JSON literal. For detailed information, see Creating * dashboards (CLI) in the IoT SiteWise User Guide.

*/ inline DescribeDashboardResult& WithDashboardDefinition(const char* value) { SetDashboardDefinition(value); return *this;} /** *

The date the dashboard was created, in Unix epoch time.

*/ inline const Aws::Utils::DateTime& GetDashboardCreationDate() const{ return m_dashboardCreationDate; } /** *

The date the dashboard was created, in Unix epoch time.

*/ inline void SetDashboardCreationDate(const Aws::Utils::DateTime& value) { m_dashboardCreationDate = value; } /** *

The date the dashboard was created, in Unix epoch time.

*/ inline void SetDashboardCreationDate(Aws::Utils::DateTime&& value) { m_dashboardCreationDate = std::move(value); } /** *

The date the dashboard was created, in Unix epoch time.

*/ inline DescribeDashboardResult& WithDashboardCreationDate(const Aws::Utils::DateTime& value) { SetDashboardCreationDate(value); return *this;} /** *

The date the dashboard was created, in Unix epoch time.

*/ inline DescribeDashboardResult& WithDashboardCreationDate(Aws::Utils::DateTime&& value) { SetDashboardCreationDate(std::move(value)); return *this;} /** *

The date the dashboard was last updated, in Unix epoch time.

*/ inline const Aws::Utils::DateTime& GetDashboardLastUpdateDate() const{ return m_dashboardLastUpdateDate; } /** *

The date the dashboard was last updated, in Unix epoch time.

*/ inline void SetDashboardLastUpdateDate(const Aws::Utils::DateTime& value) { m_dashboardLastUpdateDate = value; } /** *

The date the dashboard was last updated, in Unix epoch time.

*/ inline void SetDashboardLastUpdateDate(Aws::Utils::DateTime&& value) { m_dashboardLastUpdateDate = std::move(value); } /** *

The date the dashboard was last updated, in Unix epoch time.

*/ inline DescribeDashboardResult& WithDashboardLastUpdateDate(const Aws::Utils::DateTime& value) { SetDashboardLastUpdateDate(value); return *this;} /** *

The date the dashboard was last updated, in Unix epoch time.

*/ inline DescribeDashboardResult& WithDashboardLastUpdateDate(Aws::Utils::DateTime&& value) { SetDashboardLastUpdateDate(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeDashboardResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeDashboardResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeDashboardResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_dashboardId; Aws::String m_dashboardArn; Aws::String m_dashboardName; Aws::String m_projectId; Aws::String m_dashboardDescription; Aws::String m_dashboardDefinition; Aws::Utils::DateTime m_dashboardCreationDate; Aws::Utils::DateTime m_dashboardLastUpdateDate; Aws::String m_requestId; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws