1// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. 2 3package swf 4 5const ( 6 7 // ErrCodeDefaultUndefinedFault for service response error code 8 // "DefaultUndefinedFault". 9 // 10 // The StartWorkflowExecution API action was called without the required parameters 11 // set. 12 // 13 // Some workflow execution parameters, such as the decision taskList, must be 14 // set to start the execution. However, these parameters might have been set 15 // as defaults when the workflow type was registered. In this case, you can 16 // omit these parameters from the StartWorkflowExecution call and Amazon SWF 17 // uses the values defined in the workflow type. 18 // 19 // If these parameters aren't set and no default parameters were defined in 20 // the workflow type, this error is displayed. 21 ErrCodeDefaultUndefinedFault = "DefaultUndefinedFault" 22 23 // ErrCodeDomainAlreadyExistsFault for service response error code 24 // "DomainAlreadyExistsFault". 25 // 26 // Returned if the domain already exists. You may get this fault if you are 27 // registering a domain that is either already registered or deprecated, or 28 // if you undeprecate a domain that is currently registered. 29 ErrCodeDomainAlreadyExistsFault = "DomainAlreadyExistsFault" 30 31 // ErrCodeDomainDeprecatedFault for service response error code 32 // "DomainDeprecatedFault". 33 // 34 // Returned when the specified domain has been deprecated. 35 ErrCodeDomainDeprecatedFault = "DomainDeprecatedFault" 36 37 // ErrCodeLimitExceededFault for service response error code 38 // "LimitExceededFault". 39 // 40 // Returned by any operation if a system imposed limitation has been reached. 41 // To address this fault you should either clean up unused resources or increase 42 // the limit by contacting AWS. 43 ErrCodeLimitExceededFault = "LimitExceededFault" 44 45 // ErrCodeOperationNotPermittedFault for service response error code 46 // "OperationNotPermittedFault". 47 // 48 // Returned when the caller doesn't have sufficient permissions to invoke the 49 // action. 50 ErrCodeOperationNotPermittedFault = "OperationNotPermittedFault" 51 52 // ErrCodeTooManyTagsFault for service response error code 53 // "TooManyTagsFault". 54 // 55 // You've exceeded the number of tags allowed for a domain. 56 ErrCodeTooManyTagsFault = "TooManyTagsFault" 57 58 // ErrCodeTypeAlreadyExistsFault for service response error code 59 // "TypeAlreadyExistsFault". 60 // 61 // Returned if the type already exists in the specified domain. You may get 62 // this fault if you are registering a type that is either already registered 63 // or deprecated, or if you undeprecate a type that is currently registered. 64 ErrCodeTypeAlreadyExistsFault = "TypeAlreadyExistsFault" 65 66 // ErrCodeTypeDeprecatedFault for service response error code 67 // "TypeDeprecatedFault". 68 // 69 // Returned when the specified activity or workflow type was already deprecated. 70 ErrCodeTypeDeprecatedFault = "TypeDeprecatedFault" 71 72 // ErrCodeUnknownResourceFault for service response error code 73 // "UnknownResourceFault". 74 // 75 // Returned when the named resource cannot be found with in the scope of this 76 // operation (region or domain). This could happen if the named resource was 77 // never created or is no longer available for this operation. 78 ErrCodeUnknownResourceFault = "UnknownResourceFault" 79 80 // ErrCodeWorkflowExecutionAlreadyStartedFault for service response error code 81 // "WorkflowExecutionAlreadyStartedFault". 82 // 83 // Returned by StartWorkflowExecution when an open execution with the same workflowId 84 // is already running in the specified domain. 85 ErrCodeWorkflowExecutionAlreadyStartedFault = "WorkflowExecutionAlreadyStartedFault" 86) 87