/** * 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 CodeDeploy { namespace Model { /** *

Represents the output of a CreateDeploymentConfig * operation.

See Also:

AWS * API Reference

*/ class AWS_CODEDEPLOY_API CreateDeploymentConfigResult { public: CreateDeploymentConfigResult(); CreateDeploymentConfigResult(const Aws::AmazonWebServiceResult& result); CreateDeploymentConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A unique deployment configuration ID.

*/ inline const Aws::String& GetDeploymentConfigId() const{ return m_deploymentConfigId; } /** *

A unique deployment configuration ID.

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

A unique deployment configuration ID.

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

A unique deployment configuration ID.

*/ inline void SetDeploymentConfigId(const char* value) { m_deploymentConfigId.assign(value); } /** *

A unique deployment configuration ID.

*/ inline CreateDeploymentConfigResult& WithDeploymentConfigId(const Aws::String& value) { SetDeploymentConfigId(value); return *this;} /** *

A unique deployment configuration ID.

*/ inline CreateDeploymentConfigResult& WithDeploymentConfigId(Aws::String&& value) { SetDeploymentConfigId(std::move(value)); return *this;} /** *

A unique deployment configuration ID.

*/ inline CreateDeploymentConfigResult& WithDeploymentConfigId(const char* value) { SetDeploymentConfigId(value); return *this;} private: Aws::String m_deploymentConfigId; }; } // namespace Model } // namespace CodeDeploy } // namespace Aws