This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-codedeploy/include/aws/codedeploy/model/GetDeploymentResult.h

74 lines
1.9 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codedeploy/CodeDeploy_EXPORTS.h>
#include <aws/codedeploy/model/DeploymentInfo.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace CodeDeploy
{
namespace Model
{
/**
* <p>Represents the output of a <code>GetDeployment</code>
* operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/GetDeploymentOutput">AWS
* API Reference</a></p>
*/
class AWS_CODEDEPLOY_API GetDeploymentResult
{
public:
GetDeploymentResult();
GetDeploymentResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetDeploymentResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Information about the deployment.</p>
*/
inline const DeploymentInfo& GetDeploymentInfo() const{ return m_deploymentInfo; }
/**
* <p>Information about the deployment.</p>
*/
inline void SetDeploymentInfo(const DeploymentInfo& value) { m_deploymentInfo = value; }
/**
* <p>Information about the deployment.</p>
*/
inline void SetDeploymentInfo(DeploymentInfo&& value) { m_deploymentInfo = std::move(value); }
/**
* <p>Information about the deployment.</p>
*/
inline GetDeploymentResult& WithDeploymentInfo(const DeploymentInfo& value) { SetDeploymentInfo(value); return *this;}
/**
* <p>Information about the deployment.</p>
*/
inline GetDeploymentResult& WithDeploymentInfo(DeploymentInfo&& value) { SetDeploymentInfo(std::move(value)); return *this;}
private:
DeploymentInfo m_deploymentInfo;
};
} // namespace Model
} // namespace CodeDeploy
} // namespace Aws