/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTFleetWise { namespace Model { /** *

The registered Amazon Timestream resources that Amazon Web Services IoT * FleetWise edge agent software can transfer your vehicle data to.

See * Also:

AWS * API Reference

*/ class TimestreamResources { public: AWS_IOTFLEETWISE_API TimestreamResources(); AWS_IOTFLEETWISE_API TimestreamResources(Aws::Utils::Json::JsonView jsonValue); AWS_IOTFLEETWISE_API TimestreamResources& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTFLEETWISE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the registered Amazon Timestream database.

*/ inline const Aws::String& GetTimestreamDatabaseName() const{ return m_timestreamDatabaseName; } /** *

The name of the registered Amazon Timestream database.

*/ inline bool TimestreamDatabaseNameHasBeenSet() const { return m_timestreamDatabaseNameHasBeenSet; } /** *

The name of the registered Amazon Timestream database.

*/ inline void SetTimestreamDatabaseName(const Aws::String& value) { m_timestreamDatabaseNameHasBeenSet = true; m_timestreamDatabaseName = value; } /** *

The name of the registered Amazon Timestream database.

*/ inline void SetTimestreamDatabaseName(Aws::String&& value) { m_timestreamDatabaseNameHasBeenSet = true; m_timestreamDatabaseName = std::move(value); } /** *

The name of the registered Amazon Timestream database.

*/ inline void SetTimestreamDatabaseName(const char* value) { m_timestreamDatabaseNameHasBeenSet = true; m_timestreamDatabaseName.assign(value); } /** *

The name of the registered Amazon Timestream database.

*/ inline TimestreamResources& WithTimestreamDatabaseName(const Aws::String& value) { SetTimestreamDatabaseName(value); return *this;} /** *

The name of the registered Amazon Timestream database.

*/ inline TimestreamResources& WithTimestreamDatabaseName(Aws::String&& value) { SetTimestreamDatabaseName(std::move(value)); return *this;} /** *

The name of the registered Amazon Timestream database.

*/ inline TimestreamResources& WithTimestreamDatabaseName(const char* value) { SetTimestreamDatabaseName(value); return *this;} /** *

The name of the registered Amazon Timestream database table.

*/ inline const Aws::String& GetTimestreamTableName() const{ return m_timestreamTableName; } /** *

The name of the registered Amazon Timestream database table.

*/ inline bool TimestreamTableNameHasBeenSet() const { return m_timestreamTableNameHasBeenSet; } /** *

The name of the registered Amazon Timestream database table.

*/ inline void SetTimestreamTableName(const Aws::String& value) { m_timestreamTableNameHasBeenSet = true; m_timestreamTableName = value; } /** *

The name of the registered Amazon Timestream database table.

*/ inline void SetTimestreamTableName(Aws::String&& value) { m_timestreamTableNameHasBeenSet = true; m_timestreamTableName = std::move(value); } /** *

The name of the registered Amazon Timestream database table.

*/ inline void SetTimestreamTableName(const char* value) { m_timestreamTableNameHasBeenSet = true; m_timestreamTableName.assign(value); } /** *

The name of the registered Amazon Timestream database table.

*/ inline TimestreamResources& WithTimestreamTableName(const Aws::String& value) { SetTimestreamTableName(value); return *this;} /** *

The name of the registered Amazon Timestream database table.

*/ inline TimestreamResources& WithTimestreamTableName(Aws::String&& value) { SetTimestreamTableName(std::move(value)); return *this;} /** *

The name of the registered Amazon Timestream database table.

*/ inline TimestreamResources& WithTimestreamTableName(const char* value) { SetTimestreamTableName(value); return *this;} private: Aws::String m_timestreamDatabaseName; bool m_timestreamDatabaseNameHasBeenSet = false; Aws::String m_timestreamTableName; bool m_timestreamTableNameHasBeenSet = false; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws