// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package sfn type ExecutionStatus string // Enum values for ExecutionStatus const ( ExecutionStatusRunning ExecutionStatus = "RUNNING" ExecutionStatusSucceeded ExecutionStatus = "SUCCEEDED" ExecutionStatusFailed ExecutionStatus = "FAILED" ExecutionStatusTimedOut ExecutionStatus = "TIMED_OUT" ExecutionStatusAborted ExecutionStatus = "ABORTED" ) func (enum ExecutionStatus) MarshalValue() (string, error) { return string(enum), nil } func (enum ExecutionStatus) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type HistoryEventType string // Enum values for HistoryEventType const ( HistoryEventTypeActivityFailed HistoryEventType = "ActivityFailed" HistoryEventTypeActivityScheduled HistoryEventType = "ActivityScheduled" HistoryEventTypeActivityScheduleFailed HistoryEventType = "ActivityScheduleFailed" HistoryEventTypeActivityStarted HistoryEventType = "ActivityStarted" HistoryEventTypeActivitySucceeded HistoryEventType = "ActivitySucceeded" HistoryEventTypeActivityTimedOut HistoryEventType = "ActivityTimedOut" HistoryEventTypeChoiceStateEntered HistoryEventType = "ChoiceStateEntered" HistoryEventTypeChoiceStateExited HistoryEventType = "ChoiceStateExited" HistoryEventTypeExecutionAborted HistoryEventType = "ExecutionAborted" HistoryEventTypeExecutionFailed HistoryEventType = "ExecutionFailed" HistoryEventTypeExecutionStarted HistoryEventType = "ExecutionStarted" HistoryEventTypeExecutionSucceeded HistoryEventType = "ExecutionSucceeded" HistoryEventTypeExecutionTimedOut HistoryEventType = "ExecutionTimedOut" HistoryEventTypeFailStateEntered HistoryEventType = "FailStateEntered" HistoryEventTypeLambdaFunctionFailed HistoryEventType = "LambdaFunctionFailed" HistoryEventTypeLambdaFunctionScheduled HistoryEventType = "LambdaFunctionScheduled" HistoryEventTypeLambdaFunctionScheduleFailed HistoryEventType = "LambdaFunctionScheduleFailed" HistoryEventTypeLambdaFunctionStarted HistoryEventType = "LambdaFunctionStarted" HistoryEventTypeLambdaFunctionStartFailed HistoryEventType = "LambdaFunctionStartFailed" HistoryEventTypeLambdaFunctionSucceeded HistoryEventType = "LambdaFunctionSucceeded" HistoryEventTypeLambdaFunctionTimedOut HistoryEventType = "LambdaFunctionTimedOut" HistoryEventTypeMapIterationAborted HistoryEventType = "MapIterationAborted" HistoryEventTypeMapIterationFailed HistoryEventType = "MapIterationFailed" HistoryEventTypeMapIterationStarted HistoryEventType = "MapIterationStarted" HistoryEventTypeMapIterationSucceeded HistoryEventType = "MapIterationSucceeded" HistoryEventTypeMapStateAborted HistoryEventType = "MapStateAborted" HistoryEventTypeMapStateEntered HistoryEventType = "MapStateEntered" HistoryEventTypeMapStateExited HistoryEventType = "MapStateExited" HistoryEventTypeMapStateFailed HistoryEventType = "MapStateFailed" HistoryEventTypeMapStateStarted HistoryEventType = "MapStateStarted" HistoryEventTypeMapStateSucceeded HistoryEventType = "MapStateSucceeded" HistoryEventTypeParallelStateAborted HistoryEventType = "ParallelStateAborted" HistoryEventTypeParallelStateEntered HistoryEventType = "ParallelStateEntered" HistoryEventTypeParallelStateExited HistoryEventType = "ParallelStateExited" HistoryEventTypeParallelStateFailed HistoryEventType = "ParallelStateFailed" HistoryEventTypeParallelStateStarted HistoryEventType = "ParallelStateStarted" HistoryEventTypeParallelStateSucceeded HistoryEventType = "ParallelStateSucceeded" HistoryEventTypePassStateEntered HistoryEventType = "PassStateEntered" HistoryEventTypePassStateExited HistoryEventType = "PassStateExited" HistoryEventTypeSucceedStateEntered HistoryEventType = "SucceedStateEntered" HistoryEventTypeSucceedStateExited HistoryEventType = "SucceedStateExited" HistoryEventTypeTaskFailed HistoryEventType = "TaskFailed" HistoryEventTypeTaskScheduled HistoryEventType = "TaskScheduled" HistoryEventTypeTaskStarted HistoryEventType = "TaskStarted" HistoryEventTypeTaskStartFailed HistoryEventType = "TaskStartFailed" HistoryEventTypeTaskStateAborted HistoryEventType = "TaskStateAborted" HistoryEventTypeTaskStateEntered HistoryEventType = "TaskStateEntered" HistoryEventTypeTaskStateExited HistoryEventType = "TaskStateExited" HistoryEventTypeTaskSubmitFailed HistoryEventType = "TaskSubmitFailed" HistoryEventTypeTaskSubmitted HistoryEventType = "TaskSubmitted" HistoryEventTypeTaskSucceeded HistoryEventType = "TaskSucceeded" HistoryEventTypeTaskTimedOut HistoryEventType = "TaskTimedOut" HistoryEventTypeWaitStateAborted HistoryEventType = "WaitStateAborted" HistoryEventTypeWaitStateEntered HistoryEventType = "WaitStateEntered" HistoryEventTypeWaitStateExited HistoryEventType = "WaitStateExited" ) func (enum HistoryEventType) MarshalValue() (string, error) { return string(enum), nil } func (enum HistoryEventType) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type LogLevel string // Enum values for LogLevel const ( LogLevelAll LogLevel = "ALL" LogLevelError LogLevel = "ERROR" LogLevelFatal LogLevel = "FATAL" LogLevelOff LogLevel = "OFF" ) func (enum LogLevel) MarshalValue() (string, error) { return string(enum), nil } func (enum LogLevel) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type StateMachineStatus string // Enum values for StateMachineStatus const ( StateMachineStatusActive StateMachineStatus = "ACTIVE" StateMachineStatusDeleting StateMachineStatus = "DELETING" ) func (enum StateMachineStatus) MarshalValue() (string, error) { return string(enum), nil } func (enum StateMachineStatus) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil } type StateMachineType string // Enum values for StateMachineType const ( StateMachineTypeStandard StateMachineType = "STANDARD" StateMachineTypeExpress StateMachineType = "EXPRESS" ) func (enum StateMachineType) MarshalValue() (string, error) { return string(enum), nil } func (enum StateMachineType) MarshalValueBuf(b []byte) ([]byte, error) { b = b[0:0] return append(b, enum...), nil }