Interface ListScheduledActionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListScheduledActionsResponse.Builder,ListScheduledActionsResponse>,RedshiftServerlessResponse.Builder,SdkBuilder<ListScheduledActionsResponse.Builder,ListScheduledActionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListScheduledActionsResponse
public static interface ListScheduledActionsResponse.Builder extends RedshiftServerlessResponse.Builder, SdkPojo, CopyableBuilder<ListScheduledActionsResponse.Builder,ListScheduledActionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListScheduledActionsResponse.BuildernextToken(String nextToken)If nextToken is returned, there are more results available.ListScheduledActionsResponse.BuilderscheduledActions(Collection<ScheduledActionAssociation> scheduledActions)All of the returned scheduled action association objects.ListScheduledActionsResponse.BuilderscheduledActions(Consumer<ScheduledActionAssociation.Builder>... scheduledActions)All of the returned scheduled action association objects.ListScheduledActionsResponse.BuilderscheduledActions(ScheduledActionAssociation... scheduledActions)All of the returned scheduled action association objects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshiftserverless.model.RedshiftServerlessResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListScheduledActionsResponse.Builder nextToken(String nextToken)
If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.
- Parameters:
nextToken- If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
ListScheduledActionsResponse.Builder scheduledActions(Collection<ScheduledActionAssociation> scheduledActions)
All of the returned scheduled action association objects.
- Parameters:
scheduledActions- All of the returned scheduled action association objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
ListScheduledActionsResponse.Builder scheduledActions(ScheduledActionAssociation... scheduledActions)
All of the returned scheduled action association objects.
- Parameters:
scheduledActions- All of the returned scheduled action association objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
ListScheduledActionsResponse.Builder scheduledActions(Consumer<ScheduledActionAssociation.Builder>... scheduledActions)
All of the returned scheduled action association objects.
This is a convenience method that creates an instance of theScheduledActionAssociation.Builderavoiding the need to create one manually viaScheduledActionAssociation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#scheduledActions(List.) - Parameters:
scheduledActions- a consumer that will call methods onScheduledActionAssociation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#scheduledActions(java.util.Collection)
-
-