Interface ListReportsForReportGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodeBuildRequest.Builder,CopyableBuilder<ListReportsForReportGroupRequest.Builder,ListReportsForReportGroupRequest>,SdkBuilder<ListReportsForReportGroupRequest.Builder,ListReportsForReportGroupRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListReportsForReportGroupRequest
public static interface ListReportsForReportGroupRequest.Builder extends CodeBuildRequest.Builder, SdkPojo, CopyableBuilder<ListReportsForReportGroupRequest.Builder,ListReportsForReportGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ListReportsForReportGroupRequest.Builderfilter(Consumer<ReportFilter.Builder> filter)AReportFilterobject used to filter the returned reports.ListReportsForReportGroupRequest.Builderfilter(ReportFilter filter)AReportFilterobject used to filter the returned reports.ListReportsForReportGroupRequest.BuildermaxResults(Integer maxResults)The maximum number of paginated reports in this report group returned per response.ListReportsForReportGroupRequest.BuildernextToken(String nextToken)During a previous call, the maximum number of items that can be returned is the value specified inmaxResults.ListReportsForReportGroupRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListReportsForReportGroupRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListReportsForReportGroupRequest.BuilderreportGroupArn(String reportGroupArn)The ARN of the report group for which you want to return report ARNs.ListReportsForReportGroupRequest.BuildersortOrder(String sortOrder)Use to specify whether the results are returned in ascending or descending order.ListReportsForReportGroupRequest.BuildersortOrder(SortOrderType sortOrder)Use to specify whether the results are returned in ascending or descending order.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codebuild.model.CodeBuildRequest.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, sdkFields
-
-
-
-
Method Detail
-
reportGroupArn
ListReportsForReportGroupRequest.Builder reportGroupArn(String reportGroupArn)
The ARN of the report group for which you want to return report ARNs.
- Parameters:
reportGroupArn- The ARN of the report group for which you want to return report ARNs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListReportsForReportGroupRequest.Builder nextToken(String nextToken)
During a previous call, the maximum number of items that can be returned is the value specified in
maxResults. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.- Parameters:
nextToken- During a previous call, the maximum number of items that can be returned is the value specified inmaxResults. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortOrder
ListReportsForReportGroupRequest.Builder sortOrder(String sortOrder)
Use to specify whether the results are returned in ascending or descending order.
- Parameters:
sortOrder- Use to specify whether the results are returned in ascending or descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortOrderType,SortOrderType
-
sortOrder
ListReportsForReportGroupRequest.Builder sortOrder(SortOrderType sortOrder)
Use to specify whether the results are returned in ascending or descending order.
- Parameters:
sortOrder- Use to specify whether the results are returned in ascending or descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SortOrderType,SortOrderType
-
maxResults
ListReportsForReportGroupRequest.Builder maxResults(Integer maxResults)
The maximum number of paginated reports in this report group returned per response. Use
nextTokento iterate pages in the list of returnedReportobjects. The default value is 100.- Parameters:
maxResults- The maximum number of paginated reports in this report group returned per response. UsenextTokento iterate pages in the list of returnedReportobjects. The default value is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
ListReportsForReportGroupRequest.Builder filter(ReportFilter filter)
A
ReportFilterobject used to filter the returned reports.- Parameters:
filter- AReportFilterobject used to filter the returned reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default ListReportsForReportGroupRequest.Builder filter(Consumer<ReportFilter.Builder> filter)
A
This is a convenience method that creates an instance of theReportFilterobject used to filter the returned reports.ReportFilter.Builderavoiding the need to create one manually viaReportFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilter(ReportFilter).- Parameters:
filter- a consumer that will call methods onReportFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(ReportFilter)
-
overrideConfiguration
ListReportsForReportGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListReportsForReportGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-