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

Suite definition ID of the suite definition.

*/ inline const Aws::String& GetSuiteDefinitionId() const{ return m_suiteDefinitionId; } /** *

Suite definition ID of the suite definition.

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

Suite definition ID of the suite definition.

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

Suite definition ID of the suite definition.

*/ inline void SetSuiteDefinitionId(const char* value) { m_suiteDefinitionId.assign(value); } /** *

Suite definition ID of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionId(const Aws::String& value) { SetSuiteDefinitionId(value); return *this;} /** *

Suite definition ID of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionId(Aws::String&& value) { SetSuiteDefinitionId(std::move(value)); return *this;} /** *

Suite definition ID of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionId(const char* value) { SetSuiteDefinitionId(value); return *this;} /** *

The ARN of the suite definition.

*/ inline const Aws::String& GetSuiteDefinitionArn() const{ return m_suiteDefinitionArn; } /** *

The ARN of the suite definition.

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

The ARN of the suite definition.

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

The ARN of the suite definition.

*/ inline void SetSuiteDefinitionArn(const char* value) { m_suiteDefinitionArn.assign(value); } /** *

The ARN of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionArn(const Aws::String& value) { SetSuiteDefinitionArn(value); return *this;} /** *

The ARN of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionArn(Aws::String&& value) { SetSuiteDefinitionArn(std::move(value)); return *this;} /** *

The ARN of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionArn(const char* value) { SetSuiteDefinitionArn(value); return *this;} /** *

Suite definition version of the suite definition.

*/ inline const Aws::String& GetSuiteDefinitionVersion() const{ return m_suiteDefinitionVersion; } /** *

Suite definition version of the suite definition.

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

Suite definition version of the suite definition.

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

Suite definition version of the suite definition.

*/ inline void SetSuiteDefinitionVersion(const char* value) { m_suiteDefinitionVersion.assign(value); } /** *

Suite definition version of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionVersion(const Aws::String& value) { SetSuiteDefinitionVersion(value); return *this;} /** *

Suite definition version of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionVersion(Aws::String&& value) { SetSuiteDefinitionVersion(std::move(value)); return *this;} /** *

Suite definition version of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionVersion(const char* value) { SetSuiteDefinitionVersion(value); return *this;} /** *

Latest suite definition version of the suite definition.

*/ inline const Aws::String& GetLatestVersion() const{ return m_latestVersion; } /** *

Latest suite definition version of the suite definition.

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

Latest suite definition version of the suite definition.

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

Latest suite definition version of the suite definition.

*/ inline void SetLatestVersion(const char* value) { m_latestVersion.assign(value); } /** *

Latest suite definition version of the suite definition.

*/ inline GetSuiteDefinitionResult& WithLatestVersion(const Aws::String& value) { SetLatestVersion(value); return *this;} /** *

Latest suite definition version of the suite definition.

*/ inline GetSuiteDefinitionResult& WithLatestVersion(Aws::String&& value) { SetLatestVersion(std::move(value)); return *this;} /** *

Latest suite definition version of the suite definition.

*/ inline GetSuiteDefinitionResult& WithLatestVersion(const char* value) { SetLatestVersion(value); return *this;} /** *

Suite configuration of the suite definition.

*/ inline const SuiteDefinitionConfiguration& GetSuiteDefinitionConfiguration() const{ return m_suiteDefinitionConfiguration; } /** *

Suite configuration of the suite definition.

*/ inline void SetSuiteDefinitionConfiguration(const SuiteDefinitionConfiguration& value) { m_suiteDefinitionConfiguration = value; } /** *

Suite configuration of the suite definition.

*/ inline void SetSuiteDefinitionConfiguration(SuiteDefinitionConfiguration&& value) { m_suiteDefinitionConfiguration = std::move(value); } /** *

Suite configuration of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionConfiguration(const SuiteDefinitionConfiguration& value) { SetSuiteDefinitionConfiguration(value); return *this;} /** *

Suite configuration of the suite definition.

*/ inline GetSuiteDefinitionResult& WithSuiteDefinitionConfiguration(SuiteDefinitionConfiguration&& value) { SetSuiteDefinitionConfiguration(std::move(value)); return *this;} /** *

Date (in Unix epoch time) when the suite definition was created.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

Date (in Unix epoch time) when the suite definition was created.

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

Date (in Unix epoch time) when the suite definition was created.

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

Date (in Unix epoch time) when the suite definition was created.

*/ inline GetSuiteDefinitionResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

Date (in Unix epoch time) when the suite definition was created.

*/ inline GetSuiteDefinitionResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

Date (in Unix epoch time) when the suite definition was last modified.

*/ inline const Aws::Utils::DateTime& GetLastModifiedAt() const{ return m_lastModifiedAt; } /** *

Date (in Unix epoch time) when the suite definition was last modified.

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

Date (in Unix epoch time) when the suite definition was last modified.

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

Date (in Unix epoch time) when the suite definition was last modified.

*/ inline GetSuiteDefinitionResult& WithLastModifiedAt(const Aws::Utils::DateTime& value) { SetLastModifiedAt(value); return *this;} /** *

Date (in Unix epoch time) when the suite definition was last modified.

*/ inline GetSuiteDefinitionResult& WithLastModifiedAt(Aws::Utils::DateTime&& value) { SetLastModifiedAt(std::move(value)); return *this;} /** *

Tags attached to the suite definition.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

Tags attached to the suite definition.

*/ inline void SetTags(const Aws::Map& value) { m_tags = value; } /** *

Tags attached to the suite definition.

*/ inline void SetTags(Aws::Map&& value) { m_tags = std::move(value); } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *

Tags attached to the suite definition.

*/ inline GetSuiteDefinitionResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, 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 GetSuiteDefinitionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSuiteDefinitionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSuiteDefinitionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_suiteDefinitionId; Aws::String m_suiteDefinitionArn; Aws::String m_suiteDefinitionVersion; Aws::String m_latestVersion; SuiteDefinitionConfiguration m_suiteDefinitionConfiguration; Aws::Utils::DateTime m_createdAt; Aws::Utils::DateTime m_lastModifiedAt; Aws::Map m_tags; Aws::String m_requestId; }; } // namespace Model } // namespace IoTDeviceAdvisor } // namespace Aws