31 lines
627 B
C++
31 lines
627 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/appconfig/model/StopDeploymentRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::AppConfig::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
StopDeploymentRequest::StopDeploymentRequest() :
|
|
m_applicationIdHasBeenSet(false),
|
|
m_environmentIdHasBeenSet(false),
|
|
m_deploymentNumber(0),
|
|
m_deploymentNumberHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String StopDeploymentRequest::SerializePayload() const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
|
|
|
|
|