Interface DescribeScheduledActionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeScheduledActionsResponse.Builder,DescribeScheduledActionsResponse>,RedshiftResponse.Builder,SdkBuilder<DescribeScheduledActionsResponse.Builder,DescribeScheduledActionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeScheduledActionsResponse
public static interface DescribeScheduledActionsResponse.Builder extends RedshiftResponse.Builder, SdkPojo, CopyableBuilder<DescribeScheduledActionsResponse.Builder,DescribeScheduledActionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeScheduledActionsResponse.Buildermarker(String marker)An optional parameter that specifies the starting point to return a set of response records.DescribeScheduledActionsResponse.BuilderscheduledActions(Collection<ScheduledAction> scheduledActions)List of retrieved scheduled actions.DescribeScheduledActionsResponse.BuilderscheduledActions(Consumer<ScheduledAction.Builder>... scheduledActions)List of retrieved scheduled actions.DescribeScheduledActionsResponse.BuilderscheduledActions(ScheduledAction... scheduledActions)List of retrieved scheduled actions.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.redshift.model.RedshiftResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
marker
DescribeScheduledActionsResponse.Builder marker(String marker)
An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in
MaxRecords, Amazon Web Services returns a value in theMarkerfield of the response. You can retrieve the next set of response records by providing the returned marker value in theMarkerparameter and retrying the request.- Parameters:
marker- An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified inMaxRecords, Amazon Web Services returns a value in theMarkerfield of the response. You can retrieve the next set of response records by providing the returned marker value in theMarkerparameter and retrying the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
DescribeScheduledActionsResponse.Builder scheduledActions(Collection<ScheduledAction> scheduledActions)
List of retrieved scheduled actions.
- Parameters:
scheduledActions- List of retrieved scheduled actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
DescribeScheduledActionsResponse.Builder scheduledActions(ScheduledAction... scheduledActions)
List of retrieved scheduled actions.
- Parameters:
scheduledActions- List of retrieved scheduled actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduledActions
DescribeScheduledActionsResponse.Builder scheduledActions(Consumer<ScheduledAction.Builder>... scheduledActions)
List of retrieved scheduled actions.
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)
-
-