Interface DescribeJobDefinitionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,BatchRequest.Builder,Buildable,CopyableBuilder<DescribeJobDefinitionsRequest.Builder,DescribeJobDefinitionsRequest>,SdkBuilder<DescribeJobDefinitionsRequest.Builder,DescribeJobDefinitionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DescribeJobDefinitionsRequest
public static interface DescribeJobDefinitionsRequest.Builder extends BatchRequest.Builder, SdkPojo, CopyableBuilder<DescribeJobDefinitionsRequest.Builder,DescribeJobDefinitionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeJobDefinitionsRequest.BuilderjobDefinitionName(String jobDefinitionName)The name of the job definition to describe.DescribeJobDefinitionsRequest.BuilderjobDefinitions(String... jobDefinitions)A list of up to 100 job definitions.DescribeJobDefinitionsRequest.BuilderjobDefinitions(Collection<String> jobDefinitions)A list of up to 100 job definitions.DescribeJobDefinitionsRequest.BuildermaxResults(Integer maxResults)The maximum number of results returned byDescribeJobDefinitionsin paginated output.DescribeJobDefinitionsRequest.BuildernextToken(String nextToken)ThenextTokenvalue returned from a previous paginatedDescribeJobDefinitionsrequest wheremaxResultswas used and the results exceeded the value of that parameter.DescribeJobDefinitionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DescribeJobDefinitionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)DescribeJobDefinitionsRequest.Builderstatus(String status)The status used to filter job definitions.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.batch.model.BatchRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
jobDefinitions
DescribeJobDefinitionsRequest.Builder jobDefinitions(Collection<String> jobDefinitions)
A list of up to 100 job definitions. Each entry in the list can either be an ARN in the format
arn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}or a short version using the form${JobDefinitionName}:${Revision}. This parameter can't be used with other parameters.- Parameters:
jobDefinitions- A list of up to 100 job definitions. Each entry in the list can either be an ARN in the formatarn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}or a short version using the form${JobDefinitionName}:${Revision}. This parameter can't be used with other parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobDefinitions
DescribeJobDefinitionsRequest.Builder jobDefinitions(String... jobDefinitions)
A list of up to 100 job definitions. Each entry in the list can either be an ARN in the format
arn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}or a short version using the form${JobDefinitionName}:${Revision}. This parameter can't be used with other parameters.- Parameters:
jobDefinitions- A list of up to 100 job definitions. Each entry in the list can either be an ARN in the formatarn:aws:batch:${Region}:${Account}:job-definition/${JobDefinitionName}:${Revision}or a short version using the form${JobDefinitionName}:${Revision}. This parameter can't be used with other parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
DescribeJobDefinitionsRequest.Builder maxResults(Integer maxResults)
The maximum number of results returned by
DescribeJobDefinitionsin paginated output. When this parameter is used,DescribeJobDefinitionsonly returnsmaxResultsresults in a single page and anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherDescribeJobDefinitionsrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thenDescribeJobDefinitionsreturns up to 100 results and anextTokenvalue if applicable.- Parameters:
maxResults- The maximum number of results returned byDescribeJobDefinitionsin paginated output. When this parameter is used,DescribeJobDefinitionsonly returnsmaxResultsresults in a single page and anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherDescribeJobDefinitionsrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter isn't used, thenDescribeJobDefinitionsreturns up to 100 results and anextTokenvalue if applicable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobDefinitionName
DescribeJobDefinitionsRequest.Builder jobDefinitionName(String jobDefinitionName)
The name of the job definition to describe.
- Parameters:
jobDefinitionName- The name of the job definition to describe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DescribeJobDefinitionsRequest.Builder status(String status)
The status used to filter job definitions.
- Parameters:
status- The status used to filter job definitions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
DescribeJobDefinitionsRequest.Builder nextToken(String nextToken)
The
nextTokenvalue returned from a previous paginatedDescribeJobDefinitionsrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. This value isnullwhen there are no more results to return.Treat this token as an opaque identifier that's only used to retrieve the next items in a list and not for other programmatic purposes.
- Parameters:
nextToken- ThenextTokenvalue returned from a previous paginatedDescribeJobDefinitionsrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue. This value isnullwhen there are no more results to return.Treat this token as an opaque identifier that's only used to retrieve the next items in a list and not for other programmatic purposes.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
DescribeJobDefinitionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DescribeJobDefinitionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-