Class ListNotebookExecutionsRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.emr.model.EmrRequest
-
- software.amazon.awssdk.services.emr.model.ListNotebookExecutionsRequest
-
- All Implemented Interfaces:
SdkPojo
,ToCopyableBuilder<ListNotebookExecutionsRequest.Builder,ListNotebookExecutionsRequest>
@Generated("software.amazon.awssdk:codegen") public final class ListNotebookExecutionsRequest extends EmrRequest implements ToCopyableBuilder<ListNotebookExecutionsRequest.Builder,ListNotebookExecutionsRequest>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ListNotebookExecutionsRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListNotebookExecutionsRequest.Builder
builder()
String
editorId()
The unique ID of the editor associated with the notebook execution.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
String
executionEngineId()
The unique ID of the execution engine.Instant
from()
The beginning of time range filter for listing notebook executions.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
marker()
The pagination token, returned by a previousListNotebookExecutions
call, that indicates the start of the list for thisListNotebookExecutions
call.List<SdkField<?>>
sdkFields()
static Class<? extends ListNotebookExecutionsRequest.Builder>
serializableBuilderClass()
NotebookExecutionStatus
status()
The status filter for listing notebook executions.String
statusAsString()
The status filter for listing notebook executions.Instant
to()
The end of time range filter for listing notebook executions.ListNotebookExecutionsRequest.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
editorId
public final String editorId()
The unique ID of the editor associated with the notebook execution.
- Returns:
- The unique ID of the editor associated with the notebook execution.
-
status
public final NotebookExecutionStatus status()
The status filter for listing notebook executions.
-
START_PENDING
indicates that the cluster has received the execution request but execution has not begun. -
STARTING
indicates that the execution is starting on the cluster. -
RUNNING
indicates that the execution is being processed by the cluster. -
FINISHING
indicates that execution processing is in the final stages. -
FINISHED
indicates that the execution has completed without error. -
FAILING
indicates that the execution is failing and will not finish successfully. -
FAILED
indicates that the execution failed. -
STOP_PENDING
indicates that the cluster has received aStopNotebookExecution
request and the stop is pending. -
STOPPING
indicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecution
request. -
STOPPED
indicates that the execution stopped because of aStopNotebookExecution
request.
If the service returns an enum value that is not available in the current SDK version,
status
will returnNotebookExecutionStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromstatusAsString()
.- Returns:
- The status filter for listing notebook executions.
-
START_PENDING
indicates that the cluster has received the execution request but execution has not begun. -
STARTING
indicates that the execution is starting on the cluster. -
RUNNING
indicates that the execution is being processed by the cluster. -
FINISHING
indicates that execution processing is in the final stages. -
FINISHED
indicates that the execution has completed without error. -
FAILING
indicates that the execution is failing and will not finish successfully. -
FAILED
indicates that the execution failed. -
STOP_PENDING
indicates that the cluster has received aStopNotebookExecution
request and the stop is pending. -
STOPPING
indicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecution
request. -
STOPPED
indicates that the execution stopped because of aStopNotebookExecution
request.
-
- See Also:
NotebookExecutionStatus
-
-
statusAsString
public final String statusAsString()
The status filter for listing notebook executions.
-
START_PENDING
indicates that the cluster has received the execution request but execution has not begun. -
STARTING
indicates that the execution is starting on the cluster. -
RUNNING
indicates that the execution is being processed by the cluster. -
FINISHING
indicates that execution processing is in the final stages. -
FINISHED
indicates that the execution has completed without error. -
FAILING
indicates that the execution is failing and will not finish successfully. -
FAILED
indicates that the execution failed. -
STOP_PENDING
indicates that the cluster has received aStopNotebookExecution
request and the stop is pending. -
STOPPING
indicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecution
request. -
STOPPED
indicates that the execution stopped because of aStopNotebookExecution
request.
If the service returns an enum value that is not available in the current SDK version,
status
will returnNotebookExecutionStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromstatusAsString()
.- Returns:
- The status filter for listing notebook executions.
-
START_PENDING
indicates that the cluster has received the execution request but execution has not begun. -
STARTING
indicates that the execution is starting on the cluster. -
RUNNING
indicates that the execution is being processed by the cluster. -
FINISHING
indicates that execution processing is in the final stages. -
FINISHED
indicates that the execution has completed without error. -
FAILING
indicates that the execution is failing and will not finish successfully. -
FAILED
indicates that the execution failed. -
STOP_PENDING
indicates that the cluster has received aStopNotebookExecution
request and the stop is pending. -
STOPPING
indicates that the cluster is in the process of stopping the execution as a result of aStopNotebookExecution
request. -
STOPPED
indicates that the execution stopped because of aStopNotebookExecution
request.
-
- See Also:
NotebookExecutionStatus
-
-
from
public final Instant from()
The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
- Returns:
- The beginning of time range filter for listing notebook executions. The default is the timestamp of 30 days ago.
-
to
public final Instant to()
The end of time range filter for listing notebook executions. The default is the current timestamp.
- Returns:
- The end of time range filter for listing notebook executions. The default is the current timestamp.
-
marker
public final String marker()
The pagination token, returned by a previous
ListNotebookExecutions
call, that indicates the start of the list for thisListNotebookExecutions
call.- Returns:
- The pagination token, returned by a previous
ListNotebookExecutions
call, that indicates the start of the list for thisListNotebookExecutions
call.
-
executionEngineId
public final String executionEngineId()
The unique ID of the execution engine.
- Returns:
- The unique ID of the execution engine.
-
toBuilder
public ListNotebookExecutionsRequest.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<ListNotebookExecutionsRequest.Builder,ListNotebookExecutionsRequest>
- Specified by:
toBuilder
in classEmrRequest
-
builder
public static ListNotebookExecutionsRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends ListNotebookExecutionsRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCode
in classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equals
in classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForField
in classSdkRequest
-
-