@Generated(value="software.amazon.awssdk:codegen") public final class WorkflowDetails extends Object implements SdkPojo, Serializable, ToCopyableBuilder<WorkflowDetails.Builder,WorkflowDetails>
Container for the WorkflowDetail data type. It is used by actions that trigger a workflow to begin
execution.
| Modifier and Type | Class and Description |
|---|---|
static interface |
WorkflowDetails.Builder |
| Modifier and Type | Method and Description |
|---|---|
static WorkflowDetails.Builder |
builder() |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
boolean |
hasOnPartialUpload()
For responses, this returns true if the service returned a value for the OnPartialUpload property.
|
boolean |
hasOnUpload()
For responses, this returns true if the service returned a value for the OnUpload property.
|
List<WorkflowDetail> |
onPartialUpload()
A trigger that starts a workflow if a file is only partially uploaded.
|
List<WorkflowDetail> |
onUpload()
A trigger that starts a workflow: the workflow begins to execute after a file is uploaded.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends WorkflowDetails.Builder> |
serializableBuilderClass() |
WorkflowDetails.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final boolean hasOnUpload()
isEmpty() method on the property). This is
useful because the SDK will never return a null collection or map, but you may need to differentiate between the
service returning nothing (or null) and the service returning an empty collection or map. For requests, this
returns true if a value for the property was specified in the request builder, and false if a value was not
specified.public final List<WorkflowDetail> onUpload()
A trigger that starts a workflow: the workflow begins to execute after a file is uploaded.
To remove an associated workflow from a server, you can provide an empty OnUpload object, as in the
following example.
aws transfer update-server --server-id s-01234567890abcdef --workflow-details '{"OnUpload":[]}'
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasOnUpload() method.
To remove an associated workflow from a server, you can provide an empty OnUpload object, as
in the following example.
aws transfer update-server --server-id s-01234567890abcdef --workflow-details '{"OnUpload":[]}'
public final boolean hasOnPartialUpload()
isEmpty() method on the property).
This is useful because the SDK will never return a null collection or map, but you may need to differentiate
between the service returning nothing (or null) and the service returning an empty collection or map. For
requests, this returns true if a value for the property was specified in the request builder, and false if a
value was not specified.public final List<WorkflowDetail> onPartialUpload()
A trigger that starts a workflow if a file is only partially uploaded. You can attach a workflow to a server that executes whenever there is a partial upload.
A partial upload occurs when a file is open when the session disconnects.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that
you can differentiate between null and empty), you can use the hasOnPartialUpload() method.
A partial upload occurs when a file is open when the session disconnects.
public WorkflowDetails.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<WorkflowDetails.Builder,WorkflowDetails>public static WorkflowDetails.Builder builder()
public static Class<? extends WorkflowDetails.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.