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

Configuration ID of an application to be created.

*/ inline const Aws::String& GetConfigurationId() const{ return m_configurationId; } /** *

Configuration ID of an application to be created.

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

Configuration ID of an application to be created.

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

Configuration ID of an application to be created.

*/ inline void SetConfigurationId(const char* value) { m_configurationId.assign(value); } /** *

Configuration ID of an application to be created.

*/ inline CreateApplicationResult& WithConfigurationId(const Aws::String& value) { SetConfigurationId(value); return *this;} /** *

Configuration ID of an application to be created.

*/ inline CreateApplicationResult& WithConfigurationId(Aws::String&& value) { SetConfigurationId(std::move(value)); return *this;} /** *

Configuration ID of an application to be created.

*/ inline CreateApplicationResult& WithConfigurationId(const char* value) { SetConfigurationId(value); return *this;} private: Aws::String m_configurationId; }; } // namespace Model } // namespace ApplicationDiscoveryService } // namespace Aws