/** * 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 GetDeploymentConfig * operation.

See Also:

AWS * API Reference

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

Information about the deployment configuration.

*/ inline const DeploymentConfigInfo& GetDeploymentConfigInfo() const{ return m_deploymentConfigInfo; } /** *

Information about the deployment configuration.

*/ inline void SetDeploymentConfigInfo(const DeploymentConfigInfo& value) { m_deploymentConfigInfo = value; } /** *

Information about the deployment configuration.

*/ inline void SetDeploymentConfigInfo(DeploymentConfigInfo&& value) { m_deploymentConfigInfo = std::move(value); } /** *

Information about the deployment configuration.

*/ inline GetDeploymentConfigResult& WithDeploymentConfigInfo(const DeploymentConfigInfo& value) { SetDeploymentConfigInfo(value); return *this;} /** *

Information about the deployment configuration.

*/ inline GetDeploymentConfigResult& WithDeploymentConfigInfo(DeploymentConfigInfo&& value) { SetDeploymentConfigInfo(std::move(value)); return *this;} private: DeploymentConfigInfo m_deploymentConfigInfo; }; } // namespace Model } // namespace CodeDeploy } // namespace Aws