Interface ListFlywheelsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,ComprehendRequest.Builder,CopyableBuilder<ListFlywheelsRequest.Builder,ListFlywheelsRequest>,SdkBuilder<ListFlywheelsRequest.Builder,ListFlywheelsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListFlywheelsRequest
public static interface ListFlywheelsRequest.Builder extends ComprehendRequest.Builder, SdkPojo, CopyableBuilder<ListFlywheelsRequest.Builder,ListFlywheelsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ListFlywheelsRequest.Builderfilter(Consumer<FlywheelFilter.Builder> filter)Filters the flywheels that are returned.ListFlywheelsRequest.Builderfilter(FlywheelFilter filter)Filters the flywheels that are returned.ListFlywheelsRequest.BuildermaxResults(Integer maxResults)Maximum number of results to return in a response.ListFlywheelsRequest.BuildernextToken(String nextToken)Identifies the next page of results to return.ListFlywheelsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListFlywheelsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.comprehend.model.ComprehendRequest.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
-
filter
ListFlywheelsRequest.Builder filter(FlywheelFilter filter)
Filters the flywheels that are returned. You can filter flywheels on their status, or the date and time that they were submitted. You can only set one filter at a time.
- Parameters:
filter- Filters the flywheels that are returned. You can filter flywheels on their status, or the date and time that they were submitted. You can only set one filter at a time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default ListFlywheelsRequest.Builder filter(Consumer<FlywheelFilter.Builder> filter)
Filters the flywheels that are returned. You can filter flywheels on their status, or the date and time that they were submitted. You can only set one filter at a time.
This is a convenience method that creates an instance of theFlywheelFilter.Builderavoiding the need to create one manually viaFlywheelFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilter(FlywheelFilter).- Parameters:
filter- a consumer that will call methods onFlywheelFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(FlywheelFilter)
-
nextToken
ListFlywheelsRequest.Builder nextToken(String nextToken)
Identifies the next page of results to return.
- Parameters:
nextToken- Identifies the next page of results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListFlywheelsRequest.Builder maxResults(Integer maxResults)
Maximum number of results to return in a response. The default is 100.
- Parameters:
maxResults- Maximum number of results to return in a response. The default is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListFlywheelsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListFlywheelsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-