92 lines
3.3 KiB
C
92 lines
3.3 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/batch/Batch_EXPORTS.h>
|
|||
|
|
#include <aws/batch/BatchRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Batch
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_BATCH_API DeregisterJobDefinitionRequest : public BatchRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DeregisterJobDefinitionRequest();
|
|||
|
|
|
|||
|
|
// Service request name is the Operation name which will send this request out,
|
|||
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|||
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|||
|
|
// so we can not get operation's name from response.
|
|||
|
|
inline virtual const char* GetServiceRequestName() const override { return "DeregisterJobDefinition"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetJobDefinition() const{ return m_jobDefinition; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool JobDefinitionHasBeenSet() const { return m_jobDefinitionHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetJobDefinition(const Aws::String& value) { m_jobDefinitionHasBeenSet = true; m_jobDefinition = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetJobDefinition(Aws::String&& value) { m_jobDefinitionHasBeenSet = true; m_jobDefinition = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetJobDefinition(const char* value) { m_jobDefinitionHasBeenSet = true; m_jobDefinition.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeregisterJobDefinitionRequest& WithJobDefinition(const Aws::String& value) { SetJobDefinition(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeregisterJobDefinitionRequest& WithJobDefinition(Aws::String&& value) { SetJobDefinition(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name and revision (<code>name:revision</code>) or full Amazon Resource
|
|||
|
|
* Name (ARN) of the job definition to deregister.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeregisterJobDefinitionRequest& WithJobDefinition(const char* value) { SetJobDefinition(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_jobDefinition;
|
|||
|
|
bool m_jobDefinitionHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Batch
|
|||
|
|
} // namespace Aws
|