/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a collection of standardized signals, which can be
* attributes, branches, sensors, or actuators.See Also:
AWS
* API Reference
The name of the signal catalog.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the signal catalog.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the signal catalog.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the signal catalog.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the signal catalog.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the signal catalog.
*/ inline SignalCatalogSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the signal catalog.
*/ inline SignalCatalogSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the signal catalog.
*/ inline SignalCatalogSummary& 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 bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the signal catalog.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the signal catalog.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the signal catalog.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the signal catalog.
*/ inline SignalCatalogSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the signal catalog.
*/ inline SignalCatalogSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the signal catalog.
*/ inline SignalCatalogSummary& WithArn(const char* value) { SetArn(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 bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; } /** *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_creationTimeHasBeenSet = true; 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_creationTimeHasBeenSet = true; m_creationTime = std::move(value); } /** *The time the signal catalog was created in seconds since epoch (January 1, * 1970 at midnight UTC time).
*/ inline SignalCatalogSummary& 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 SignalCatalogSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *The time the signal catalog was last updated in seconds since epoch (January * 1, 1970 at midnight UTC time).
*/ inline const Aws::Utils::DateTime& GetLastModificationTime() const{ return m_lastModificationTime; } /** *The time the signal catalog was last updated in seconds since epoch (January * 1, 1970 at midnight UTC time).
*/ inline bool LastModificationTimeHasBeenSet() const { return m_lastModificationTimeHasBeenSet; } /** *The time the signal catalog was last updated in seconds since epoch (January * 1, 1970 at midnight UTC time).
*/ inline void SetLastModificationTime(const Aws::Utils::DateTime& value) { m_lastModificationTimeHasBeenSet = true; m_lastModificationTime = value; } /** *The time the signal catalog was last updated in seconds since epoch (January * 1, 1970 at midnight UTC time).
*/ inline void SetLastModificationTime(Aws::Utils::DateTime&& value) { m_lastModificationTimeHasBeenSet = true; m_lastModificationTime = std::move(value); } /** *The time the signal catalog was last updated in seconds since epoch (January * 1, 1970 at midnight UTC time).
*/ inline SignalCatalogSummary& WithLastModificationTime(const Aws::Utils::DateTime& value) { SetLastModificationTime(value); return *this;} /** *The time the signal catalog was last updated in seconds since epoch (January * 1, 1970 at midnight UTC time).
*/ inline SignalCatalogSummary& WithLastModificationTime(Aws::Utils::DateTime&& value) { SetLastModificationTime(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Utils::DateTime m_creationTime; bool m_creationTimeHasBeenSet = false; Aws::Utils::DateTime m_lastModificationTime; bool m_lastModificationTimeHasBeenSet = false; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws