@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:01:38.425Z") @Stability(value=Experimental) public enum IntegrationPattern extends Enum<IntegrationPattern>
You can control these AWS services using service integration patterns:
https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html| Enum Constant and Description |
|---|
REQUEST_RESPONSE
(experimental) Step Functions will wait for an HTTP response and then progress to the next state.
|
RUN_JOB
(experimental) Step Functions can wait for a request to complete before progressing to the next state.
|
WAIT_FOR_TASK_TOKEN
(experimental) Callback tasks provide a way to pause a workflow until a task token is returned.
|
| Modifier and Type | Method and Description |
|---|---|
static IntegrationPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrationPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final IntegrationPattern REQUEST_RESPONSE
https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-default@Stability(value=Experimental) public static final IntegrationPattern RUN_JOB
https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-sync@Stability(value=Experimental) public static final IntegrationPattern WAIT_FOR_TASK_TOKEN
You must set a task token when using the callback pattern
https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html#connect-wait-tokenpublic static IntegrationPattern[] values()
for (IntegrationPattern c : IntegrationPattern.values()) System.out.println(c);
public static IntegrationPattern valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.