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/CreateDeploymentConfigResult.h

84 lines
2.4 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>CreateDeploymentConfig</code>
* operation.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codedeploy-2014-10-06/CreateDeploymentConfigOutput">AWS
* API Reference</a></p>
*/
class AWS_CODEDEPLOY_API CreateDeploymentConfigResult
{
public:
CreateDeploymentConfigResult();
CreateDeploymentConfigResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateDeploymentConfigResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A unique deployment configuration ID.</p>
*/
inline const Aws::String& GetDeploymentConfigId() const{ return m_deploymentConfigId; }
/**
* <p>A unique deployment configuration ID.</p>
*/
inline void SetDeploymentConfigId(const Aws::String& value) { m_deploymentConfigId = value; }
/**
* <p>A unique deployment configuration ID.</p>
*/
inline void SetDeploymentConfigId(Aws::String&& value) { m_deploymentConfigId = std::move(value); }
/**
* <p>A unique deployment configuration ID.</p>
*/
inline void SetDeploymentConfigId(const char* value) { m_deploymentConfigId.assign(value); }
/**
* <p>A unique deployment configuration ID.</p>
*/
inline CreateDeploymentConfigResult& WithDeploymentConfigId(const Aws::String& value) { SetDeploymentConfigId(value); return *this;}
/**
* <p>A unique deployment configuration ID.</p>
*/
inline CreateDeploymentConfigResult& WithDeploymentConfigId(Aws::String&& value) { SetDeploymentConfigId(std::move(value)); return *this;}
/**
* <p>A unique deployment configuration ID.</p>
*/
inline CreateDeploymentConfigResult& WithDeploymentConfigId(const char* value) { SetDeploymentConfigId(value); return *this;}
private:
Aws::String m_deploymentConfigId;
};
} // namespace Model
} // namespace CodeDeploy
} // namespace Aws