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

The name of the domain configuration.

*/ inline const Aws::String& GetDomainConfigurationName() const{ return m_domainConfigurationName; } /** *

The name of the domain configuration.

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

The name of the domain configuration.

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

The name of the domain configuration.

*/ inline void SetDomainConfigurationName(const char* value) { m_domainConfigurationName.assign(value); } /** *

The name of the domain configuration.

*/ inline CreateDomainConfigurationResult& WithDomainConfigurationName(const Aws::String& value) { SetDomainConfigurationName(value); return *this;} /** *

The name of the domain configuration.

*/ inline CreateDomainConfigurationResult& WithDomainConfigurationName(Aws::String&& value) { SetDomainConfigurationName(std::move(value)); return *this;} /** *

The name of the domain configuration.

*/ inline CreateDomainConfigurationResult& WithDomainConfigurationName(const char* value) { SetDomainConfigurationName(value); return *this;} /** *

The ARN of the domain configuration.

*/ inline const Aws::String& GetDomainConfigurationArn() const{ return m_domainConfigurationArn; } /** *

The ARN of the domain configuration.

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

The ARN of the domain configuration.

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

The ARN of the domain configuration.

*/ inline void SetDomainConfigurationArn(const char* value) { m_domainConfigurationArn.assign(value); } /** *

The ARN of the domain configuration.

*/ inline CreateDomainConfigurationResult& WithDomainConfigurationArn(const Aws::String& value) { SetDomainConfigurationArn(value); return *this;} /** *

The ARN of the domain configuration.

*/ inline CreateDomainConfigurationResult& WithDomainConfigurationArn(Aws::String&& value) { SetDomainConfigurationArn(std::move(value)); return *this;} /** *

The ARN of the domain configuration.

*/ inline CreateDomainConfigurationResult& WithDomainConfigurationArn(const char* value) { SetDomainConfigurationArn(value); return *this;} private: Aws::String m_domainConfigurationName; Aws::String m_domainConfigurationArn; }; } // namespace Model } // namespace IoT } // namespace Aws