@Generated(value="software.amazon.awssdk:codegen") public final class ListExecutionsRequest extends TransferRequest implements ToCopyableBuilder<ListExecutionsRequest.Builder,ListExecutionsRequest>
| Modifier and Type | Class and Description |
|---|---|
static interface |
ListExecutionsRequest.Builder |
| Modifier and Type | Method and Description |
|---|---|
static ListExecutionsRequest.Builder |
builder() |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
Integer |
maxResults()
Specifies the maximum number of executions to return.
|
String |
nextToken()
ListExecutions returns the NextToken parameter in the output. |
List<SdkField<?>> |
sdkFields() |
static Class<? extends ListExecutionsRequest.Builder> |
serializableBuilderClass() |
ListExecutionsRequest.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
String |
workflowId()
A unique identifier for the workflow.
|
overrideConfigurationclone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final Integer maxResults()
Specifies the maximum number of executions to return.
public final String nextToken()
ListExecutions returns the NextToken parameter in the output. You can then pass the
NextToken parameter in a subsequent command to continue listing additional executions.
This is useful for pagination, for instance. If you have 100 executions for a workflow, you might only want to
list first 10. If so, call the API by specifying the max-results:
aws transfer list-executions --max-results 10
This returns details for the first 10 executions, as well as the pointer (NextToken) to the eleventh
execution. You can now call the API again, supplying the NextToken value you received:
aws transfer list-executions --max-results 10 --next-token $somePointerReturnedFromPreviousListResult
This call returns the next 10 executions, the 11th through the 20th. You can then repeat the call until the details for all 100 executions have been returned.
ListExecutions returns the NextToken parameter in the output. You can then pass
the NextToken parameter in a subsequent command to continue listing additional
executions.
This is useful for pagination, for instance. If you have 100 executions for a workflow, you might only
want to list first 10. If so, call the API by specifying the max-results:
aws transfer list-executions --max-results 10
This returns details for the first 10 executions, as well as the pointer (NextToken) to the
eleventh execution. You can now call the API again, supplying the NextToken value you
received:
aws transfer list-executions --max-results 10 --next-token $somePointerReturnedFromPreviousListResult
This call returns the next 10 executions, the 11th through the 20th. You can then repeat the call until the details for all 100 executions have been returned.
public final String workflowId()
A unique identifier for the workflow.
public ListExecutionsRequest.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<ListExecutionsRequest.Builder,ListExecutionsRequest>toBuilder in class TransferRequestpublic static ListExecutionsRequest.Builder builder()
public static Class<? extends ListExecutionsRequest.Builder> serializableBuilderClass()
public final int hashCode()
hashCode in class AwsRequestpublic final boolean equals(Object obj)
equals in class AwsRequestpublic final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField in class SdkRequestCopyright © 2023. All rights reserved.