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

103 lines
4.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/elastictranscoder/ElasticTranscoder_EXPORTS.h>
#include <aws/elastictranscoder/ElasticTranscoderRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace ElasticTranscoder
{
namespace Model
{
/**
* <p>The <code>CancelJobRequest</code> structure.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/elastictranscoder-2012-09-25/CancelJobRequest">AWS
* API Reference</a></p>
*/
class AWS_ELASTICTRANSCODER_API CancelJobRequest : public ElasticTranscoderRequest
{
public:
CancelJobRequest();
// 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 "CancelJob"; }
Aws::String SerializePayload() const override;
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline const Aws::String& GetId() const{ return m_id; }
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline CancelJobRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline CancelJobRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
/**
* <p>The identifier of the job that you want to cancel.</p> <p>To get a list of
* the jobs (including their <code>jobId</code>) that have a status of
* <code>Submitted</code>, use the <a>ListJobsByStatus</a> API action.</p>
*/
inline CancelJobRequest& WithId(const char* value) { SetId(value); return *this;}
private:
Aws::String m_id;
bool m_idHasBeenSet;
};
} // namespace Model
} // namespace ElasticTranscoder
} // namespace Aws