Interface ListScheduledActionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListScheduledActionsResponse.Builder,ListScheduledActionsResponse>,OpenSearchResponse.Builder,SdkBuilder<ListScheduledActionsResponse.Builder,ListScheduledActionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListScheduledActionsResponse
public static interface ListScheduledActionsResponse.Builder extends OpenSearchResponse.Builder, SdkPojo, CopyableBuilder<ListScheduledActionsResponse.Builder,ListScheduledActionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListScheduledActionsResponse.BuildernextToken(String nextToken)WhennextTokenis returned, there are more results available.ListScheduledActionsResponse.BuilderscheduledActions(Collection<ScheduledAction> scheduledActions)A list of actions that are scheduled for the domain.ListScheduledActionsResponse.BuilderscheduledActions(Consumer<ScheduledAction.Builder>... scheduledActions)A list of actions that are scheduled for the domain.ListScheduledActionsResponse.BuilderscheduledActions(ScheduledAction... scheduledActions)A list of actions that are scheduled for the domain.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.opensearch.model.OpenSearchResponse.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
-
scheduledActions
ListScheduledActionsResponse.Builder scheduledActions(Collection<ScheduledAction> scheduledActions)
A list of actions that are scheduled for the domain.
- Parameters:
scheduledActions- A list of actions that are scheduled for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
ListScheduledActionsResponse.Builder scheduledActions(ScheduledAction... scheduledActions)
A list of actions that are scheduled for the domain.
- Parameters:
scheduledActions- A list of actions that are scheduled for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
ListScheduledActionsResponse.Builder scheduledActions(Consumer<ScheduledAction.Builder>... scheduledActions)
A list of actions that are scheduled for the domain.
This is a convenience method that creates an instance of theScheduledAction.Builderavoiding the need to create one manually viaScheduledAction.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 onScheduledAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#scheduledActions(java.util.Collection)
-
nextToken
ListScheduledActionsResponse.Builder nextToken(String nextToken)
When
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.- Parameters:
nextToken- WhennextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Send the request 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.
-
-