Interface ListHubsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<ListHubsRequest.Builder,ListHubsRequest>
,SageMakerRequest.Builder
,SdkBuilder<ListHubsRequest.Builder,ListHubsRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- ListHubsRequest
public static interface ListHubsRequest.Builder extends SageMakerRequest.Builder, SdkPojo, CopyableBuilder<ListHubsRequest.Builder,ListHubsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListHubsRequest.Builder
creationTimeAfter(Instant creationTimeAfter)
Only list hubs that were created after the time specified.ListHubsRequest.Builder
creationTimeBefore(Instant creationTimeBefore)
Only list hubs that were created before the time specified.ListHubsRequest.Builder
lastModifiedTimeAfter(Instant lastModifiedTimeAfter)
Only list hubs that were last modified after the time specified.ListHubsRequest.Builder
lastModifiedTimeBefore(Instant lastModifiedTimeBefore)
Only list hubs that were last modified before the time specified.ListHubsRequest.Builder
maxResults(Integer maxResults)
The maximum number of hubs to list.ListHubsRequest.Builder
nameContains(String nameContains)
Only list hubs with names that contain the specified string.ListHubsRequest.Builder
nextToken(String nextToken)
If the response to a previousListHubs
request was truncated, the response includes aNextToken
.ListHubsRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
ListHubsRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
ListHubsRequest.Builder
sortBy(String sortBy)
Sort hubs by either name or creation time.ListHubsRequest.Builder
sortBy(HubSortBy sortBy)
Sort hubs by either name or creation time.ListHubsRequest.Builder
sortOrder(String sortOrder)
Sort hubs by ascending or descending order.ListHubsRequest.Builder
sortOrder(SortOrder sortOrder)
Sort hubs by ascending or descending order.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerRequest.Builder
build
-
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
-
nameContains
ListHubsRequest.Builder nameContains(String nameContains)
Only list hubs with names that contain the specified string.
- Parameters:
nameContains
- Only list hubs with names that contain the specified string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTimeBefore
ListHubsRequest.Builder creationTimeBefore(Instant creationTimeBefore)
Only list hubs that were created before the time specified.
- Parameters:
creationTimeBefore
- Only list hubs that were created before the time specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTimeAfter
ListHubsRequest.Builder creationTimeAfter(Instant creationTimeAfter)
Only list hubs that were created after the time specified.
- Parameters:
creationTimeAfter
- Only list hubs that were created after the time specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTimeBefore
ListHubsRequest.Builder lastModifiedTimeBefore(Instant lastModifiedTimeBefore)
Only list hubs that were last modified before the time specified.
- Parameters:
lastModifiedTimeBefore
- Only list hubs that were last modified before the time specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTimeAfter
ListHubsRequest.Builder lastModifiedTimeAfter(Instant lastModifiedTimeAfter)
Only list hubs that were last modified after the time specified.
- Parameters:
lastModifiedTimeAfter
- Only list hubs that were last modified after the time specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortBy
ListHubsRequest.Builder sortBy(String sortBy)
Sort hubs by either name or creation time.
-
sortBy
ListHubsRequest.Builder sortBy(HubSortBy sortBy)
Sort hubs by either name or creation time.
-
sortOrder
ListHubsRequest.Builder sortOrder(String sortOrder)
Sort hubs by ascending or descending order.
-
sortOrder
ListHubsRequest.Builder sortOrder(SortOrder sortOrder)
Sort hubs by ascending or descending order.
-
maxResults
ListHubsRequest.Builder maxResults(Integer maxResults)
The maximum number of hubs to list.
- Parameters:
maxResults
- The maximum number of hubs to list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListHubsRequest.Builder nextToken(String nextToken)
If the response to a previous
ListHubs
request was truncated, the response includes aNextToken
. To retrieve the next set of hubs, use the token in the next request.- Parameters:
nextToken
- If the response to a previousListHubs
request was truncated, the response includes aNextToken
. To retrieve the next set of hubs, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListHubsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
ListHubsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-