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-batch/include/aws/batch/model/DescribeJobDefinitionsRequest.h

343 lines
16 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/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Batch
{
namespace Model
{
/**
*/
class AWS_BATCH_API DescribeJobDefinitionsRequest : public BatchRequest
{
public:
DescribeJobDefinitionsRequest();
// 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 "DescribeJobDefinitions"; }
Aws::String SerializePayload() const override;
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline const Aws::Vector<Aws::String>& GetJobDefinitions() const{ return m_jobDefinitions; }
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline bool JobDefinitionsHasBeenSet() const { return m_jobDefinitionsHasBeenSet; }
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline void SetJobDefinitions(const Aws::Vector<Aws::String>& value) { m_jobDefinitionsHasBeenSet = true; m_jobDefinitions = value; }
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline void SetJobDefinitions(Aws::Vector<Aws::String>&& value) { m_jobDefinitionsHasBeenSet = true; m_jobDefinitions = std::move(value); }
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline DescribeJobDefinitionsRequest& WithJobDefinitions(const Aws::Vector<Aws::String>& value) { SetJobDefinitions(value); return *this;}
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline DescribeJobDefinitionsRequest& WithJobDefinitions(Aws::Vector<Aws::String>&& value) { SetJobDefinitions(std::move(value)); return *this;}
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline DescribeJobDefinitionsRequest& AddJobDefinitions(const Aws::String& value) { m_jobDefinitionsHasBeenSet = true; m_jobDefinitions.push_back(value); return *this; }
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline DescribeJobDefinitionsRequest& AddJobDefinitions(Aws::String&& value) { m_jobDefinitionsHasBeenSet = true; m_jobDefinitions.push_back(std::move(value)); return *this; }
/**
* <p>A list of up to 100 job definition names or full Amazon Resource Name (ARN)
* entries.</p>
*/
inline DescribeJobDefinitionsRequest& AddJobDefinitions(const char* value) { m_jobDefinitionsHasBeenSet = true; m_jobDefinitions.push_back(value); return *this; }
/**
* <p>The maximum number of results returned by <code>DescribeJobDefinitions</code>
* in paginated output. When this parameter is used,
* <code>DescribeJobDefinitions</code> only returns <code>maxResults</code> results
* in a single page along with a <code>nextToken</code> response element. The
* remaining results of the initial request can be seen by sending another
* <code>DescribeJobDefinitions</code> request with the returned
* <code>nextToken</code> value. This value can be between 1 and 100. If this
* parameter is not used, then <code>DescribeJobDefinitions</code> returns up to
* 100 results and a <code>nextToken</code> value if applicable.</p>
*/
inline int GetMaxResults() const{ return m_maxResults; }
/**
* <p>The maximum number of results returned by <code>DescribeJobDefinitions</code>
* in paginated output. When this parameter is used,
* <code>DescribeJobDefinitions</code> only returns <code>maxResults</code> results
* in a single page along with a <code>nextToken</code> response element. The
* remaining results of the initial request can be seen by sending another
* <code>DescribeJobDefinitions</code> request with the returned
* <code>nextToken</code> value. This value can be between 1 and 100. If this
* parameter is not used, then <code>DescribeJobDefinitions</code> returns up to
* 100 results and a <code>nextToken</code> value if applicable.</p>
*/
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
/**
* <p>The maximum number of results returned by <code>DescribeJobDefinitions</code>
* in paginated output. When this parameter is used,
* <code>DescribeJobDefinitions</code> only returns <code>maxResults</code> results
* in a single page along with a <code>nextToken</code> response element. The
* remaining results of the initial request can be seen by sending another
* <code>DescribeJobDefinitions</code> request with the returned
* <code>nextToken</code> value. This value can be between 1 and 100. If this
* parameter is not used, then <code>DescribeJobDefinitions</code> returns up to
* 100 results and a <code>nextToken</code> value if applicable.</p>
*/
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
/**
* <p>The maximum number of results returned by <code>DescribeJobDefinitions</code>
* in paginated output. When this parameter is used,
* <code>DescribeJobDefinitions</code> only returns <code>maxResults</code> results
* in a single page along with a <code>nextToken</code> response element. The
* remaining results of the initial request can be seen by sending another
* <code>DescribeJobDefinitions</code> request with the returned
* <code>nextToken</code> value. This value can be between 1 and 100. If this
* parameter is not used, then <code>DescribeJobDefinitions</code> returns up to
* 100 results and a <code>nextToken</code> value if applicable.</p>
*/
inline DescribeJobDefinitionsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
/**
* <p>The name of the job definition to describe.</p>
*/
inline const Aws::String& GetJobDefinitionName() const{ return m_jobDefinitionName; }
/**
* <p>The name of the job definition to describe.</p>
*/
inline bool JobDefinitionNameHasBeenSet() const { return m_jobDefinitionNameHasBeenSet; }
/**
* <p>The name of the job definition to describe.</p>
*/
inline void SetJobDefinitionName(const Aws::String& value) { m_jobDefinitionNameHasBeenSet = true; m_jobDefinitionName = value; }
/**
* <p>The name of the job definition to describe.</p>
*/
inline void SetJobDefinitionName(Aws::String&& value) { m_jobDefinitionNameHasBeenSet = true; m_jobDefinitionName = std::move(value); }
/**
* <p>The name of the job definition to describe.</p>
*/
inline void SetJobDefinitionName(const char* value) { m_jobDefinitionNameHasBeenSet = true; m_jobDefinitionName.assign(value); }
/**
* <p>The name of the job definition to describe.</p>
*/
inline DescribeJobDefinitionsRequest& WithJobDefinitionName(const Aws::String& value) { SetJobDefinitionName(value); return *this;}
/**
* <p>The name of the job definition to describe.</p>
*/
inline DescribeJobDefinitionsRequest& WithJobDefinitionName(Aws::String&& value) { SetJobDefinitionName(std::move(value)); return *this;}
/**
* <p>The name of the job definition to describe.</p>
*/
inline DescribeJobDefinitionsRequest& WithJobDefinitionName(const char* value) { SetJobDefinitionName(value); return *this;}
/**
* <p>The status with which to filter job definitions.</p>
*/
inline const Aws::String& GetStatus() const{ return m_status; }
/**
* <p>The status with which to filter job definitions.</p>
*/
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
/**
* <p>The status with which to filter job definitions.</p>
*/
inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; }
/**
* <p>The status with which to filter job definitions.</p>
*/
inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
/**
* <p>The status with which to filter job definitions.</p>
*/
inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); }
/**
* <p>The status with which to filter job definitions.</p>
*/
inline DescribeJobDefinitionsRequest& WithStatus(const Aws::String& value) { SetStatus(value); return *this;}
/**
* <p>The status with which to filter job definitions.</p>
*/
inline DescribeJobDefinitionsRequest& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;}
/**
* <p>The status with which to filter job definitions.</p>
*/
inline DescribeJobDefinitionsRequest& WithStatus(const char* value) { SetStatus(value); return *this;}
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline DescribeJobDefinitionsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline DescribeJobDefinitionsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The <code>nextToken</code> value returned from a previous paginated
* <code>DescribeJobDefinitions</code> request where <code>maxResults</code> was
* used and the results exceeded the value of that parameter. Pagination continues
* from the end of the previous results that returned the <code>nextToken</code>
* value. This value is <code>null</code> when there are no more results to
* return.</p> <p>This token should be treated as an opaque identifier that
* is only used to retrieve the next items in a list and not for other programmatic
* purposes.</p>
*/
inline DescribeJobDefinitionsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
private:
Aws::Vector<Aws::String> m_jobDefinitions;
bool m_jobDefinitionsHasBeenSet;
int m_maxResults;
bool m_maxResultsHasBeenSet;
Aws::String m_jobDefinitionName;
bool m_jobDefinitionNameHasBeenSet;
Aws::String m_status;
bool m_statusHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
};
} // namespace Model
} // namespace Batch
} // namespace Aws