84 lines
2.2 KiB
C
84 lines
2.2 KiB
C
|
|
/**
|
|||
|
|
* 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/core/utils/memory/stl/AWSString.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>CreateDeployment</code> operation.
|
|||
|
|
* </p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentOutput">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_CODEDEPLOY_API CreateDeploymentResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CreateDeploymentResult();
|
|||
|
|
CreateDeploymentResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
CreateDeploymentResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetDeploymentId() const{ return m_deploymentId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeploymentId(const Aws::String& value) { m_deploymentId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeploymentId(Aws::String&& value) { m_deploymentId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetDeploymentId(const char* value) { m_deploymentId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline CreateDeploymentResult& WithDeploymentId(const Aws::String& value) { SetDeploymentId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline CreateDeploymentResult& WithDeploymentId(Aws::String&& value) { SetDeploymentId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> The unique ID of a deployment. </p>
|
|||
|
|
*/
|
|||
|
|
inline CreateDeploymentResult& WithDeploymentId(const char* value) { SetDeploymentId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_deploymentId;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CodeDeploy
|
|||
|
|
} // namespace Aws
|