com.fivefaces.cloud.workflow.awsonprem.StateMachineConstants Maven / Gradle / Ivy
package com.fivefaces.cloud.workflow.awsonprem;
import java.util.List;
public interface StateMachineConstants {
String ApiGatewayInvoke = "arn:aws:states:::apigateway:invoke";
String StartExecutionSync = "arn:aws:states:::states:startExecution.sync";
String StartExecutionAsync = "arn:aws:states:::states:startExecution";
List StartExecution = List.of(StartExecutionSync, StartExecutionAsync);
String ERROR = "error";
String CAUSE = "cause";
String DEBUG = "DEBUG";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy