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

The name of the signal catalog.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the signal catalog.

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

The name of the signal catalog.

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

The name of the signal catalog.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

The name of the signal catalog.

*/ inline GetSignalCatalogResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the signal catalog.

*/ inline GetSignalCatalogResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the signal catalog.

*/ inline GetSignalCatalogResult& WithName(const char* value) { SetName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the signal catalog.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the signal catalog.

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

The Amazon Resource Name (ARN) of the signal catalog.

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

The Amazon Resource Name (ARN) of the signal catalog.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the signal catalog.

*/ inline GetSignalCatalogResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the signal catalog.

*/ inline GetSignalCatalogResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the signal catalog.

*/ inline GetSignalCatalogResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

A brief description of the signal catalog.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A brief description of the signal catalog.

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

A brief description of the signal catalog.

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

A brief description of the signal catalog.

*/ inline void SetDescription(const char* value) { m_description.assign(value); } /** *

A brief description of the signal catalog.

*/ inline GetSignalCatalogResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A brief description of the signal catalog.

*/ inline GetSignalCatalogResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A brief description of the signal catalog.

*/ inline GetSignalCatalogResult& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The total number of network nodes specified in a signal catalog.

*/ inline const NodeCounts& GetNodeCounts() const{ return m_nodeCounts; } /** *

The total number of network nodes specified in a signal catalog.

*/ inline void SetNodeCounts(const NodeCounts& value) { m_nodeCounts = value; } /** *

The total number of network nodes specified in a signal catalog.

*/ inline void SetNodeCounts(NodeCounts&& value) { m_nodeCounts = std::move(value); } /** *

The total number of network nodes specified in a signal catalog.

*/ inline GetSignalCatalogResult& WithNodeCounts(const NodeCounts& value) { SetNodeCounts(value); return *this;} /** *

The total number of network nodes specified in a signal catalog.

*/ inline GetSignalCatalogResult& WithNodeCounts(NodeCounts&& value) { SetNodeCounts(std::move(value)); return *this;} /** *

The time the signal catalog was created in seconds since epoch (January 1, * 1970 at midnight UTC time).

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The time the signal catalog was created in seconds since epoch (January 1, * 1970 at midnight UTC time).

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

The time the signal catalog was created in seconds since epoch (January 1, * 1970 at midnight UTC time).

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

The time the signal catalog was created in seconds since epoch (January 1, * 1970 at midnight UTC time).

*/ inline GetSignalCatalogResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The time the signal catalog was created in seconds since epoch (January 1, * 1970 at midnight UTC time).

*/ inline GetSignalCatalogResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

The last time the signal catalog was modified.

*/ inline const Aws::Utils::DateTime& GetLastModificationTime() const{ return m_lastModificationTime; } /** *

The last time the signal catalog was modified.

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

The last time the signal catalog was modified.

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

The last time the signal catalog was modified.

*/ inline GetSignalCatalogResult& WithLastModificationTime(const Aws::Utils::DateTime& value) { SetLastModificationTime(value); return *this;} /** *

The last time the signal catalog was modified.

*/ inline GetSignalCatalogResult& WithLastModificationTime(Aws::Utils::DateTime&& value) { SetLastModificationTime(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 GetSignalCatalogResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSignalCatalogResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSignalCatalogResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_name; Aws::String m_arn; Aws::String m_description; NodeCounts m_nodeCounts; Aws::Utils::DateTime m_creationTime; Aws::Utils::DateTime m_lastModificationTime; Aws::String m_requestId; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws