/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a GetDeployment
* operation.See Also:
AWS
* API Reference
Information about the deployment.
*/ inline const DeploymentInfo& GetDeploymentInfo() const{ return m_deploymentInfo; } /** *Information about the deployment.
*/ inline void SetDeploymentInfo(const DeploymentInfo& value) { m_deploymentInfo = value; } /** *Information about the deployment.
*/ inline void SetDeploymentInfo(DeploymentInfo&& value) { m_deploymentInfo = std::move(value); } /** *Information about the deployment.
*/ inline GetDeploymentResult& WithDeploymentInfo(const DeploymentInfo& value) { SetDeploymentInfo(value); return *this;} /** *Information about the deployment.
*/ inline GetDeploymentResult& WithDeploymentInfo(DeploymentInfo&& value) { SetDeploymentInfo(std::move(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 GetDeploymentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDeploymentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDeploymentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DeploymentInfo m_deploymentInfo; Aws::String m_requestId; }; } // namespace Model } // namespace CodeDeploy } // namespace Aws