/** * 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 IoT { namespace Model { class ListDomainConfigurationsResult { public: AWS_IOT_API ListDomainConfigurationsResult(); AWS_IOT_API ListDomainConfigurationsResult(const Aws::AmazonWebServiceResult& result); AWS_IOT_API ListDomainConfigurationsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline const Aws::Vector& GetDomainConfigurations() const{ return m_domainConfigurations; } /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline void SetDomainConfigurations(const Aws::Vector& value) { m_domainConfigurations = value; } /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline void SetDomainConfigurations(Aws::Vector&& value) { m_domainConfigurations = std::move(value); } /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline ListDomainConfigurationsResult& WithDomainConfigurations(const Aws::Vector& value) { SetDomainConfigurations(value); return *this;} /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline ListDomainConfigurationsResult& WithDomainConfigurations(Aws::Vector&& value) { SetDomainConfigurations(std::move(value)); return *this;} /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline ListDomainConfigurationsResult& AddDomainConfigurations(const DomainConfigurationSummary& value) { m_domainConfigurations.push_back(value); return *this; } /** *

A list of objects that contain summary information about the user's domain * configurations.

*/ inline ListDomainConfigurationsResult& AddDomainConfigurations(DomainConfigurationSummary&& value) { m_domainConfigurations.push_back(std::move(value)); return *this; } /** *

The marker for the next set of results.

*/ inline const Aws::String& GetNextMarker() const{ return m_nextMarker; } /** *

The marker for the next set of results.

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

The marker for the next set of results.

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

The marker for the next set of results.

*/ inline void SetNextMarker(const char* value) { m_nextMarker.assign(value); } /** *

The marker for the next set of results.

*/ inline ListDomainConfigurationsResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

The marker for the next set of results.

*/ inline ListDomainConfigurationsResult& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;} /** *

The marker for the next set of results.

*/ inline ListDomainConfigurationsResult& WithNextMarker(const char* value) { SetNextMarker(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 ListDomainConfigurationsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListDomainConfigurationsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListDomainConfigurationsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_domainConfigurations; Aws::String m_nextMarker; Aws::String m_requestId; }; } // namespace Model } // namespace IoT } // namespace Aws