| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838 |
- {
- "version":"2.0",
- "metadata":{
- "apiVersion":"2012-01-25",
- "endpointPrefix":"swf",
- "jsonVersion":"1.0",
- "serviceAbbreviation":"Amazon SWF",
- "serviceFullName":"Amazon Simple Workflow Service",
- "signatureVersion":"v4",
- "targetPrefix":"SimpleWorkflowService",
- "timestampFormat":"unixTimestamp",
- "protocol":"json"
- },
- "operations":{
- "CountClosedWorkflowExecutions":{
- "name":"CountClosedWorkflowExecutions",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CountClosedWorkflowExecutionsInput"},
- "output":{"shape":"WorkflowExecutionCount"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "CountOpenWorkflowExecutions":{
- "name":"CountOpenWorkflowExecutions",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CountOpenWorkflowExecutionsInput"},
- "output":{"shape":"WorkflowExecutionCount"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "CountPendingActivityTasks":{
- "name":"CountPendingActivityTasks",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CountPendingActivityTasksInput"},
- "output":{"shape":"PendingTaskCount"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "CountPendingDecisionTasks":{
- "name":"CountPendingDecisionTasks",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CountPendingDecisionTasksInput"},
- "output":{"shape":"PendingTaskCount"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DeprecateActivityType":{
- "name":"DeprecateActivityType",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeprecateActivityTypeInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"TypeDeprecatedFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DeprecateDomain":{
- "name":"DeprecateDomain",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeprecateDomainInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"DomainDeprecatedFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DeprecateWorkflowType":{
- "name":"DeprecateWorkflowType",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeprecateWorkflowTypeInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"TypeDeprecatedFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DescribeActivityType":{
- "name":"DescribeActivityType",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeActivityTypeInput"},
- "output":{"shape":"ActivityTypeDetail"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DescribeDomain":{
- "name":"DescribeDomain",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeDomainInput"},
- "output":{"shape":"DomainDetail"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DescribeWorkflowExecution":{
- "name":"DescribeWorkflowExecution",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeWorkflowExecutionInput"},
- "output":{"shape":"WorkflowExecutionDetail"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "DescribeWorkflowType":{
- "name":"DescribeWorkflowType",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeWorkflowTypeInput"},
- "output":{"shape":"WorkflowTypeDetail"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "GetWorkflowExecutionHistory":{
- "name":"GetWorkflowExecutionHistory",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"GetWorkflowExecutionHistoryInput"},
- "output":{"shape":"History"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "ListActivityTypes":{
- "name":"ListActivityTypes",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"ListActivityTypesInput"},
- "output":{"shape":"ActivityTypeInfos"},
- "errors":[
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- },
- {
- "shape":"UnknownResourceFault",
- "exception":true
- }
- ]
- },
- "ListClosedWorkflowExecutions":{
- "name":"ListClosedWorkflowExecutions",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"ListClosedWorkflowExecutionsInput"},
- "output":{"shape":"WorkflowExecutionInfos"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "ListDomains":{
- "name":"ListDomains",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"ListDomainsInput"},
- "output":{"shape":"DomainInfos"},
- "errors":[
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "ListOpenWorkflowExecutions":{
- "name":"ListOpenWorkflowExecutions",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"ListOpenWorkflowExecutionsInput"},
- "output":{"shape":"WorkflowExecutionInfos"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "ListWorkflowTypes":{
- "name":"ListWorkflowTypes",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"ListWorkflowTypesInput"},
- "output":{"shape":"WorkflowTypeInfos"},
- "errors":[
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- },
- {
- "shape":"UnknownResourceFault",
- "exception":true
- }
- ]
- },
- "PollForActivityTask":{
- "name":"PollForActivityTask",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"PollForActivityTaskInput"},
- "output":{"shape":"ActivityTask"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- },
- {
- "shape":"LimitExceededFault",
- "exception":true
- }
- ]
- },
- "PollForDecisionTask":{
- "name":"PollForDecisionTask",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"PollForDecisionTaskInput"},
- "output":{"shape":"DecisionTask"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- },
- {
- "shape":"LimitExceededFault",
- "exception":true
- }
- ]
- },
- "RecordActivityTaskHeartbeat":{
- "name":"RecordActivityTaskHeartbeat",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RecordActivityTaskHeartbeatInput"},
- "output":{"shape":"ActivityTaskStatus"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RegisterActivityType":{
- "name":"RegisterActivityType",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RegisterActivityTypeInput"},
- "errors":[
- {
- "shape":"TypeAlreadyExistsFault",
- "exception":true
- },
- {
- "shape":"LimitExceededFault",
- "exception":true
- },
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RegisterDomain":{
- "name":"RegisterDomain",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RegisterDomainInput"},
- "errors":[
- {
- "shape":"DomainAlreadyExistsFault",
- "exception":true
- },
- {
- "shape":"LimitExceededFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RegisterWorkflowType":{
- "name":"RegisterWorkflowType",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RegisterWorkflowTypeInput"},
- "errors":[
- {
- "shape":"TypeAlreadyExistsFault",
- "exception":true
- },
- {
- "shape":"LimitExceededFault",
- "exception":true
- },
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RequestCancelWorkflowExecution":{
- "name":"RequestCancelWorkflowExecution",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RequestCancelWorkflowExecutionInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RespondActivityTaskCanceled":{
- "name":"RespondActivityTaskCanceled",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RespondActivityTaskCanceledInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RespondActivityTaskCompleted":{
- "name":"RespondActivityTaskCompleted",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RespondActivityTaskCompletedInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RespondActivityTaskFailed":{
- "name":"RespondActivityTaskFailed",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RespondActivityTaskFailedInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "RespondDecisionTaskCompleted":{
- "name":"RespondDecisionTaskCompleted",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"RespondDecisionTaskCompletedInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "SignalWorkflowExecution":{
- "name":"SignalWorkflowExecution",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"SignalWorkflowExecutionInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- },
- "StartWorkflowExecution":{
- "name":"StartWorkflowExecution",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"StartWorkflowExecutionInput"},
- "output":{"shape":"Run"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"TypeDeprecatedFault",
- "exception":true
- },
- {
- "shape":"WorkflowExecutionAlreadyStartedFault",
- "exception":true
- },
- {
- "shape":"LimitExceededFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- },
- {
- "shape":"DefaultUndefinedFault",
- "exception":true
- }
- ]
- },
- "TerminateWorkflowExecution":{
- "name":"TerminateWorkflowExecution",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"TerminateWorkflowExecutionInput"},
- "errors":[
- {
- "shape":"UnknownResourceFault",
- "exception":true
- },
- {
- "shape":"OperationNotPermittedFault",
- "exception":true
- }
- ]
- }
- },
- "shapes":{
- "ActivityId":{
- "type":"string",
- "min":1,
- "max":256
- },
- "ActivityTask":{
- "type":"structure",
- "required":[
- "taskToken",
- "activityId",
- "startedEventId",
- "workflowExecution",
- "activityType"
- ],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "activityId":{"shape":"ActivityId"},
- "startedEventId":{"shape":"EventId"},
- "workflowExecution":{"shape":"WorkflowExecution"},
- "activityType":{"shape":"ActivityType"},
- "input":{"shape":"Data"}
- }
- },
- "ActivityTaskCancelRequestedEventAttributes":{
- "type":"structure",
- "required":[
- "decisionTaskCompletedEventId",
- "activityId"
- ],
- "members":{
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "activityId":{"shape":"ActivityId"}
- }
- },
- "ActivityTaskCanceledEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "details":{"shape":"Data"},
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"},
- "latestCancelRequestedEventId":{"shape":"EventId"}
- }
- },
- "ActivityTaskCompletedEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "result":{"shape":"Data"},
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "ActivityTaskFailedEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "reason":{"shape":"FailureReason"},
- "details":{"shape":"Data"},
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "ActivityTaskScheduledEventAttributes":{
- "type":"structure",
- "required":[
- "activityType",
- "activityId",
- "taskList",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "activityType":{"shape":"ActivityType"},
- "activityId":{"shape":"ActivityId"},
- "input":{"shape":"Data"},
- "control":{"shape":"Data"},
- "scheduleToStartTimeout":{"shape":"DurationInSecondsOptional"},
- "scheduleToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "startToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "heartbeatTimeout":{"shape":"DurationInSecondsOptional"}
- }
- },
- "ActivityTaskStartedEventAttributes":{
- "type":"structure",
- "required":["scheduledEventId"],
- "members":{
- "identity":{"shape":"Identity"},
- "scheduledEventId":{"shape":"EventId"}
- }
- },
- "ActivityTaskStatus":{
- "type":"structure",
- "required":["cancelRequested"],
- "members":{
- "cancelRequested":{"shape":"Canceled"}
- }
- },
- "ActivityTaskTimedOutEventAttributes":{
- "type":"structure",
- "required":[
- "timeoutType",
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "timeoutType":{"shape":"ActivityTaskTimeoutType"},
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"},
- "details":{"shape":"LimitedData"}
- }
- },
- "ActivityTaskTimeoutType":{
- "type":"string",
- "enum":[
- "START_TO_CLOSE",
- "SCHEDULE_TO_START",
- "SCHEDULE_TO_CLOSE",
- "HEARTBEAT"
- ]
- },
- "ActivityType":{
- "type":"structure",
- "required":[
- "name",
- "version"
- ],
- "members":{
- "name":{"shape":"Name"},
- "version":{"shape":"Version"}
- }
- },
- "ActivityTypeConfiguration":{
- "type":"structure",
- "members":{
- "defaultTaskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskHeartbeatTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskList":{"shape":"TaskList"},
- "defaultTaskPriority":{"shape":"TaskPriority"},
- "defaultTaskScheduleToStartTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskScheduleToCloseTimeout":{"shape":"DurationInSecondsOptional"}
- }
- },
- "ActivityTypeDetail":{
- "type":"structure",
- "required":[
- "typeInfo",
- "configuration"
- ],
- "members":{
- "typeInfo":{"shape":"ActivityTypeInfo"},
- "configuration":{"shape":"ActivityTypeConfiguration"}
- }
- },
- "ActivityTypeInfo":{
- "type":"structure",
- "required":[
- "activityType",
- "status",
- "creationDate"
- ],
- "members":{
- "activityType":{"shape":"ActivityType"},
- "status":{"shape":"RegistrationStatus"},
- "description":{"shape":"Description"},
- "creationDate":{"shape":"Timestamp"},
- "deprecationDate":{"shape":"Timestamp"}
- }
- },
- "ActivityTypeInfoList":{
- "type":"list",
- "member":{"shape":"ActivityTypeInfo"}
- },
- "ActivityTypeInfos":{
- "type":"structure",
- "required":["typeInfos"],
- "members":{
- "typeInfos":{"shape":"ActivityTypeInfoList"},
- "nextPageToken":{"shape":"PageToken"}
- }
- },
- "Arn":{
- "type":"string",
- "min":1,
- "max":1224
- },
- "CancelTimerDecisionAttributes":{
- "type":"structure",
- "required":["timerId"],
- "members":{
- "timerId":{"shape":"TimerId"}
- }
- },
- "CancelTimerFailedCause":{
- "type":"string",
- "enum":[
- "TIMER_ID_UNKNOWN",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "CancelTimerFailedEventAttributes":{
- "type":"structure",
- "required":[
- "timerId",
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "timerId":{"shape":"TimerId"},
- "cause":{"shape":"CancelTimerFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "CancelWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "members":{
- "details":{"shape":"Data"}
- }
- },
- "CancelWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "UNHANDLED_DECISION",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "CancelWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "cause":{"shape":"CancelWorkflowExecutionFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "Canceled":{"type":"boolean"},
- "CauseMessage":{
- "type":"string",
- "max":1728
- },
- "ChildPolicy":{
- "type":"string",
- "enum":[
- "TERMINATE",
- "REQUEST_CANCEL",
- "ABANDON"
- ]
- },
- "ChildWorkflowExecutionCanceledEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "workflowType",
- "initiatedEventId",
- "startedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "details":{"shape":"Data"},
- "initiatedEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "ChildWorkflowExecutionCompletedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "workflowType",
- "initiatedEventId",
- "startedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "result":{"shape":"Data"},
- "initiatedEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "ChildWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "workflowType",
- "initiatedEventId",
- "startedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "reason":{"shape":"FailureReason"},
- "details":{"shape":"Data"},
- "initiatedEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "ChildWorkflowExecutionStartedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "workflowType",
- "initiatedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "initiatedEventId":{"shape":"EventId"}
- }
- },
- "ChildWorkflowExecutionTerminatedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "workflowType",
- "initiatedEventId",
- "startedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "initiatedEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "ChildWorkflowExecutionTimedOutEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "workflowType",
- "timeoutType",
- "initiatedEventId",
- "startedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "timeoutType":{"shape":"WorkflowExecutionTimeoutType"},
- "initiatedEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "CloseStatus":{
- "type":"string",
- "enum":[
- "COMPLETED",
- "FAILED",
- "CANCELED",
- "TERMINATED",
- "CONTINUED_AS_NEW",
- "TIMED_OUT"
- ]
- },
- "CloseStatusFilter":{
- "type":"structure",
- "required":["status"],
- "members":{
- "status":{"shape":"CloseStatus"}
- }
- },
- "CompleteWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "members":{
- "result":{"shape":"Data"}
- }
- },
- "CompleteWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "UNHANDLED_DECISION",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "CompleteWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "cause":{"shape":"CompleteWorkflowExecutionFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "ContinueAsNewWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "members":{
- "input":{"shape":"Data"},
- "executionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "taskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "childPolicy":{"shape":"ChildPolicy"},
- "tagList":{"shape":"TagList"},
- "workflowTypeVersion":{"shape":"Version"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "ContinueAsNewWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "UNHANDLED_DECISION",
- "WORKFLOW_TYPE_DEPRECATED",
- "WORKFLOW_TYPE_DOES_NOT_EXIST",
- "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED",
- "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED",
- "DEFAULT_TASK_LIST_UNDEFINED",
- "DEFAULT_CHILD_POLICY_UNDEFINED",
- "CONTINUE_AS_NEW_WORKFLOW_EXECUTION_RATE_EXCEEDED",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "ContinueAsNewWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "cause":{"shape":"ContinueAsNewWorkflowExecutionFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "Count":{
- "type":"integer",
- "min":0
- },
- "CountClosedWorkflowExecutionsInput":{
- "type":"structure",
- "required":["domain"],
- "members":{
- "domain":{"shape":"DomainName"},
- "startTimeFilter":{"shape":"ExecutionTimeFilter"},
- "closeTimeFilter":{"shape":"ExecutionTimeFilter"},
- "executionFilter":{"shape":"WorkflowExecutionFilter"},
- "typeFilter":{"shape":"WorkflowTypeFilter"},
- "tagFilter":{"shape":"TagFilter"},
- "closeStatusFilter":{"shape":"CloseStatusFilter"}
- }
- },
- "CountOpenWorkflowExecutionsInput":{
- "type":"structure",
- "required":[
- "domain",
- "startTimeFilter"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "startTimeFilter":{"shape":"ExecutionTimeFilter"},
- "typeFilter":{"shape":"WorkflowTypeFilter"},
- "tagFilter":{"shape":"TagFilter"},
- "executionFilter":{"shape":"WorkflowExecutionFilter"}
- }
- },
- "CountPendingActivityTasksInput":{
- "type":"structure",
- "required":[
- "domain",
- "taskList"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "taskList":{"shape":"TaskList"}
- }
- },
- "CountPendingDecisionTasksInput":{
- "type":"structure",
- "required":[
- "domain",
- "taskList"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "taskList":{"shape":"TaskList"}
- }
- },
- "Data":{
- "type":"string",
- "max":32768
- },
- "Decision":{
- "type":"structure",
- "required":["decisionType"],
- "members":{
- "decisionType":{"shape":"DecisionType"},
- "scheduleActivityTaskDecisionAttributes":{"shape":"ScheduleActivityTaskDecisionAttributes"},
- "requestCancelActivityTaskDecisionAttributes":{"shape":"RequestCancelActivityTaskDecisionAttributes"},
- "completeWorkflowExecutionDecisionAttributes":{"shape":"CompleteWorkflowExecutionDecisionAttributes"},
- "failWorkflowExecutionDecisionAttributes":{"shape":"FailWorkflowExecutionDecisionAttributes"},
- "cancelWorkflowExecutionDecisionAttributes":{"shape":"CancelWorkflowExecutionDecisionAttributes"},
- "continueAsNewWorkflowExecutionDecisionAttributes":{"shape":"ContinueAsNewWorkflowExecutionDecisionAttributes"},
- "recordMarkerDecisionAttributes":{"shape":"RecordMarkerDecisionAttributes"},
- "startTimerDecisionAttributes":{"shape":"StartTimerDecisionAttributes"},
- "cancelTimerDecisionAttributes":{"shape":"CancelTimerDecisionAttributes"},
- "signalExternalWorkflowExecutionDecisionAttributes":{"shape":"SignalExternalWorkflowExecutionDecisionAttributes"},
- "requestCancelExternalWorkflowExecutionDecisionAttributes":{"shape":"RequestCancelExternalWorkflowExecutionDecisionAttributes"},
- "startChildWorkflowExecutionDecisionAttributes":{"shape":"StartChildWorkflowExecutionDecisionAttributes"},
- "scheduleLambdaFunctionDecisionAttributes":{"shape":"ScheduleLambdaFunctionDecisionAttributes"}
- }
- },
- "DecisionList":{
- "type":"list",
- "member":{"shape":"Decision"}
- },
- "DecisionTask":{
- "type":"structure",
- "required":[
- "taskToken",
- "startedEventId",
- "workflowExecution",
- "workflowType",
- "events"
- ],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "startedEventId":{"shape":"EventId"},
- "workflowExecution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "events":{"shape":"HistoryEventList"},
- "nextPageToken":{"shape":"PageToken"},
- "previousStartedEventId":{"shape":"EventId"}
- }
- },
- "DecisionTaskCompletedEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "executionContext":{"shape":"Data"},
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "DecisionTaskScheduledEventAttributes":{
- "type":"structure",
- "required":["taskList"],
- "members":{
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "startToCloseTimeout":{"shape":"DurationInSecondsOptional"}
- }
- },
- "DecisionTaskStartedEventAttributes":{
- "type":"structure",
- "required":["scheduledEventId"],
- "members":{
- "identity":{"shape":"Identity"},
- "scheduledEventId":{"shape":"EventId"}
- }
- },
- "DecisionTaskTimedOutEventAttributes":{
- "type":"structure",
- "required":[
- "timeoutType",
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "timeoutType":{"shape":"DecisionTaskTimeoutType"},
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "DecisionTaskTimeoutType":{
- "type":"string",
- "enum":["START_TO_CLOSE"]
- },
- "DecisionType":{
- "type":"string",
- "enum":[
- "ScheduleActivityTask",
- "RequestCancelActivityTask",
- "CompleteWorkflowExecution",
- "FailWorkflowExecution",
- "CancelWorkflowExecution",
- "ContinueAsNewWorkflowExecution",
- "RecordMarker",
- "StartTimer",
- "CancelTimer",
- "SignalExternalWorkflowExecution",
- "RequestCancelExternalWorkflowExecution",
- "StartChildWorkflowExecution",
- "ScheduleLambdaFunction"
- ]
- },
- "DefaultUndefinedFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "DeprecateActivityTypeInput":{
- "type":"structure",
- "required":[
- "domain",
- "activityType"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "activityType":{"shape":"ActivityType"}
- }
- },
- "DeprecateDomainInput":{
- "type":"structure",
- "required":["name"],
- "members":{
- "name":{"shape":"DomainName"}
- }
- },
- "DeprecateWorkflowTypeInput":{
- "type":"structure",
- "required":[
- "domain",
- "workflowType"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "workflowType":{"shape":"WorkflowType"}
- }
- },
- "DescribeActivityTypeInput":{
- "type":"structure",
- "required":[
- "domain",
- "activityType"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "activityType":{"shape":"ActivityType"}
- }
- },
- "DescribeDomainInput":{
- "type":"structure",
- "required":["name"],
- "members":{
- "name":{"shape":"DomainName"}
- }
- },
- "DescribeWorkflowExecutionInput":{
- "type":"structure",
- "required":[
- "domain",
- "execution"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "execution":{"shape":"WorkflowExecution"}
- }
- },
- "DescribeWorkflowTypeInput":{
- "type":"structure",
- "required":[
- "domain",
- "workflowType"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "workflowType":{"shape":"WorkflowType"}
- }
- },
- "Description":{
- "type":"string",
- "max":1024
- },
- "DomainAlreadyExistsFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "DomainConfiguration":{
- "type":"structure",
- "required":["workflowExecutionRetentionPeriodInDays"],
- "members":{
- "workflowExecutionRetentionPeriodInDays":{"shape":"DurationInDays"}
- }
- },
- "DomainDeprecatedFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "DomainDetail":{
- "type":"structure",
- "required":[
- "domainInfo",
- "configuration"
- ],
- "members":{
- "domainInfo":{"shape":"DomainInfo"},
- "configuration":{"shape":"DomainConfiguration"}
- }
- },
- "DomainInfo":{
- "type":"structure",
- "required":[
- "name",
- "status"
- ],
- "members":{
- "name":{"shape":"DomainName"},
- "status":{"shape":"RegistrationStatus"},
- "description":{"shape":"Description"}
- }
- },
- "DomainInfoList":{
- "type":"list",
- "member":{"shape":"DomainInfo"}
- },
- "DomainInfos":{
- "type":"structure",
- "required":["domainInfos"],
- "members":{
- "domainInfos":{"shape":"DomainInfoList"},
- "nextPageToken":{"shape":"PageToken"}
- }
- },
- "DomainName":{
- "type":"string",
- "min":1,
- "max":256
- },
- "DurationInDays":{
- "type":"string",
- "min":1,
- "max":8
- },
- "DurationInSeconds":{
- "type":"string",
- "min":1,
- "max":8
- },
- "DurationInSecondsOptional":{
- "type":"string",
- "max":8
- },
- "ErrorMessage":{"type":"string"},
- "EventId":{"type":"long"},
- "EventType":{
- "type":"string",
- "enum":[
- "WorkflowExecutionStarted",
- "WorkflowExecutionCancelRequested",
- "WorkflowExecutionCompleted",
- "CompleteWorkflowExecutionFailed",
- "WorkflowExecutionFailed",
- "FailWorkflowExecutionFailed",
- "WorkflowExecutionTimedOut",
- "WorkflowExecutionCanceled",
- "CancelWorkflowExecutionFailed",
- "WorkflowExecutionContinuedAsNew",
- "ContinueAsNewWorkflowExecutionFailed",
- "WorkflowExecutionTerminated",
- "DecisionTaskScheduled",
- "DecisionTaskStarted",
- "DecisionTaskCompleted",
- "DecisionTaskTimedOut",
- "ActivityTaskScheduled",
- "ScheduleActivityTaskFailed",
- "ActivityTaskStarted",
- "ActivityTaskCompleted",
- "ActivityTaskFailed",
- "ActivityTaskTimedOut",
- "ActivityTaskCanceled",
- "ActivityTaskCancelRequested",
- "RequestCancelActivityTaskFailed",
- "WorkflowExecutionSignaled",
- "MarkerRecorded",
- "RecordMarkerFailed",
- "TimerStarted",
- "StartTimerFailed",
- "TimerFired",
- "TimerCanceled",
- "CancelTimerFailed",
- "StartChildWorkflowExecutionInitiated",
- "StartChildWorkflowExecutionFailed",
- "ChildWorkflowExecutionStarted",
- "ChildWorkflowExecutionCompleted",
- "ChildWorkflowExecutionFailed",
- "ChildWorkflowExecutionTimedOut",
- "ChildWorkflowExecutionCanceled",
- "ChildWorkflowExecutionTerminated",
- "SignalExternalWorkflowExecutionInitiated",
- "SignalExternalWorkflowExecutionFailed",
- "ExternalWorkflowExecutionSignaled",
- "RequestCancelExternalWorkflowExecutionInitiated",
- "RequestCancelExternalWorkflowExecutionFailed",
- "ExternalWorkflowExecutionCancelRequested",
- "LambdaFunctionScheduled",
- "LambdaFunctionStarted",
- "LambdaFunctionCompleted",
- "LambdaFunctionFailed",
- "LambdaFunctionTimedOut",
- "ScheduleLambdaFunctionFailed",
- "StartLambdaFunctionFailed"
- ]
- },
- "ExecutionStatus":{
- "type":"string",
- "enum":[
- "OPEN",
- "CLOSED"
- ]
- },
- "ExecutionTimeFilter":{
- "type":"structure",
- "required":["oldestDate"],
- "members":{
- "oldestDate":{"shape":"Timestamp"},
- "latestDate":{"shape":"Timestamp"}
- }
- },
- "ExternalWorkflowExecutionCancelRequestedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "initiatedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "initiatedEventId":{"shape":"EventId"}
- }
- },
- "ExternalWorkflowExecutionSignaledEventAttributes":{
- "type":"structure",
- "required":[
- "workflowExecution",
- "initiatedEventId"
- ],
- "members":{
- "workflowExecution":{"shape":"WorkflowExecution"},
- "initiatedEventId":{"shape":"EventId"}
- }
- },
- "FailWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "members":{
- "reason":{"shape":"FailureReason"},
- "details":{"shape":"Data"}
- }
- },
- "FailWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "UNHANDLED_DECISION",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "FailWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "cause":{"shape":"FailWorkflowExecutionFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "FailureReason":{
- "type":"string",
- "max":256
- },
- "FunctionId":{
- "type":"string",
- "min":1,
- "max":256
- },
- "FunctionInput":{
- "type":"string",
- "min":1,
- "max":32768
- },
- "FunctionName":{
- "type":"string",
- "min":1,
- "max":64
- },
- "GetWorkflowExecutionHistoryInput":{
- "type":"structure",
- "required":[
- "domain",
- "execution"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "execution":{"shape":"WorkflowExecution"},
- "nextPageToken":{"shape":"PageToken"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"}
- }
- },
- "History":{
- "type":"structure",
- "required":["events"],
- "members":{
- "events":{"shape":"HistoryEventList"},
- "nextPageToken":{"shape":"PageToken"}
- }
- },
- "HistoryEvent":{
- "type":"structure",
- "required":[
- "eventTimestamp",
- "eventType",
- "eventId"
- ],
- "members":{
- "eventTimestamp":{"shape":"Timestamp"},
- "eventType":{"shape":"EventType"},
- "eventId":{"shape":"EventId"},
- "workflowExecutionStartedEventAttributes":{"shape":"WorkflowExecutionStartedEventAttributes"},
- "workflowExecutionCompletedEventAttributes":{"shape":"WorkflowExecutionCompletedEventAttributes"},
- "completeWorkflowExecutionFailedEventAttributes":{"shape":"CompleteWorkflowExecutionFailedEventAttributes"},
- "workflowExecutionFailedEventAttributes":{"shape":"WorkflowExecutionFailedEventAttributes"},
- "failWorkflowExecutionFailedEventAttributes":{"shape":"FailWorkflowExecutionFailedEventAttributes"},
- "workflowExecutionTimedOutEventAttributes":{"shape":"WorkflowExecutionTimedOutEventAttributes"},
- "workflowExecutionCanceledEventAttributes":{"shape":"WorkflowExecutionCanceledEventAttributes"},
- "cancelWorkflowExecutionFailedEventAttributes":{"shape":"CancelWorkflowExecutionFailedEventAttributes"},
- "workflowExecutionContinuedAsNewEventAttributes":{"shape":"WorkflowExecutionContinuedAsNewEventAttributes"},
- "continueAsNewWorkflowExecutionFailedEventAttributes":{"shape":"ContinueAsNewWorkflowExecutionFailedEventAttributes"},
- "workflowExecutionTerminatedEventAttributes":{"shape":"WorkflowExecutionTerminatedEventAttributes"},
- "workflowExecutionCancelRequestedEventAttributes":{"shape":"WorkflowExecutionCancelRequestedEventAttributes"},
- "decisionTaskScheduledEventAttributes":{"shape":"DecisionTaskScheduledEventAttributes"},
- "decisionTaskStartedEventAttributes":{"shape":"DecisionTaskStartedEventAttributes"},
- "decisionTaskCompletedEventAttributes":{"shape":"DecisionTaskCompletedEventAttributes"},
- "decisionTaskTimedOutEventAttributes":{"shape":"DecisionTaskTimedOutEventAttributes"},
- "activityTaskScheduledEventAttributes":{"shape":"ActivityTaskScheduledEventAttributes"},
- "activityTaskStartedEventAttributes":{"shape":"ActivityTaskStartedEventAttributes"},
- "activityTaskCompletedEventAttributes":{"shape":"ActivityTaskCompletedEventAttributes"},
- "activityTaskFailedEventAttributes":{"shape":"ActivityTaskFailedEventAttributes"},
- "activityTaskTimedOutEventAttributes":{"shape":"ActivityTaskTimedOutEventAttributes"},
- "activityTaskCanceledEventAttributes":{"shape":"ActivityTaskCanceledEventAttributes"},
- "activityTaskCancelRequestedEventAttributes":{"shape":"ActivityTaskCancelRequestedEventAttributes"},
- "workflowExecutionSignaledEventAttributes":{"shape":"WorkflowExecutionSignaledEventAttributes"},
- "markerRecordedEventAttributes":{"shape":"MarkerRecordedEventAttributes"},
- "recordMarkerFailedEventAttributes":{"shape":"RecordMarkerFailedEventAttributes"},
- "timerStartedEventAttributes":{"shape":"TimerStartedEventAttributes"},
- "timerFiredEventAttributes":{"shape":"TimerFiredEventAttributes"},
- "timerCanceledEventAttributes":{"shape":"TimerCanceledEventAttributes"},
- "startChildWorkflowExecutionInitiatedEventAttributes":{"shape":"StartChildWorkflowExecutionInitiatedEventAttributes"},
- "childWorkflowExecutionStartedEventAttributes":{"shape":"ChildWorkflowExecutionStartedEventAttributes"},
- "childWorkflowExecutionCompletedEventAttributes":{"shape":"ChildWorkflowExecutionCompletedEventAttributes"},
- "childWorkflowExecutionFailedEventAttributes":{"shape":"ChildWorkflowExecutionFailedEventAttributes"},
- "childWorkflowExecutionTimedOutEventAttributes":{"shape":"ChildWorkflowExecutionTimedOutEventAttributes"},
- "childWorkflowExecutionCanceledEventAttributes":{"shape":"ChildWorkflowExecutionCanceledEventAttributes"},
- "childWorkflowExecutionTerminatedEventAttributes":{"shape":"ChildWorkflowExecutionTerminatedEventAttributes"},
- "signalExternalWorkflowExecutionInitiatedEventAttributes":{"shape":"SignalExternalWorkflowExecutionInitiatedEventAttributes"},
- "externalWorkflowExecutionSignaledEventAttributes":{"shape":"ExternalWorkflowExecutionSignaledEventAttributes"},
- "signalExternalWorkflowExecutionFailedEventAttributes":{"shape":"SignalExternalWorkflowExecutionFailedEventAttributes"},
- "externalWorkflowExecutionCancelRequestedEventAttributes":{"shape":"ExternalWorkflowExecutionCancelRequestedEventAttributes"},
- "requestCancelExternalWorkflowExecutionInitiatedEventAttributes":{"shape":"RequestCancelExternalWorkflowExecutionInitiatedEventAttributes"},
- "requestCancelExternalWorkflowExecutionFailedEventAttributes":{"shape":"RequestCancelExternalWorkflowExecutionFailedEventAttributes"},
- "scheduleActivityTaskFailedEventAttributes":{"shape":"ScheduleActivityTaskFailedEventAttributes"},
- "requestCancelActivityTaskFailedEventAttributes":{"shape":"RequestCancelActivityTaskFailedEventAttributes"},
- "startTimerFailedEventAttributes":{"shape":"StartTimerFailedEventAttributes"},
- "cancelTimerFailedEventAttributes":{"shape":"CancelTimerFailedEventAttributes"},
- "startChildWorkflowExecutionFailedEventAttributes":{"shape":"StartChildWorkflowExecutionFailedEventAttributes"},
- "lambdaFunctionScheduledEventAttributes":{"shape":"LambdaFunctionScheduledEventAttributes"},
- "lambdaFunctionStartedEventAttributes":{"shape":"LambdaFunctionStartedEventAttributes"},
- "lambdaFunctionCompletedEventAttributes":{"shape":"LambdaFunctionCompletedEventAttributes"},
- "lambdaFunctionFailedEventAttributes":{"shape":"LambdaFunctionFailedEventAttributes"},
- "lambdaFunctionTimedOutEventAttributes":{"shape":"LambdaFunctionTimedOutEventAttributes"},
- "scheduleLambdaFunctionFailedEventAttributes":{"shape":"ScheduleLambdaFunctionFailedEventAttributes"},
- "startLambdaFunctionFailedEventAttributes":{"shape":"StartLambdaFunctionFailedEventAttributes"}
- }
- },
- "HistoryEventList":{
- "type":"list",
- "member":{"shape":"HistoryEvent"}
- },
- "Identity":{
- "type":"string",
- "max":256
- },
- "LambdaFunctionCompletedEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"},
- "result":{"shape":"Data"}
- }
- },
- "LambdaFunctionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"},
- "reason":{"shape":"FailureReason"},
- "details":{"shape":"Data"}
- }
- },
- "LambdaFunctionScheduledEventAttributes":{
- "type":"structure",
- "required":[
- "id",
- "name",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "id":{"shape":"FunctionId"},
- "name":{"shape":"FunctionName"},
- "input":{"shape":"FunctionInput"},
- "startToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "LambdaFunctionStartedEventAttributes":{
- "type":"structure",
- "required":["scheduledEventId"],
- "members":{
- "scheduledEventId":{"shape":"EventId"}
- }
- },
- "LambdaFunctionTimedOutEventAttributes":{
- "type":"structure",
- "required":[
- "scheduledEventId",
- "startedEventId"
- ],
- "members":{
- "scheduledEventId":{"shape":"EventId"},
- "startedEventId":{"shape":"EventId"},
- "timeoutType":{"shape":"LambdaFunctionTimeoutType"}
- }
- },
- "LambdaFunctionTimeoutType":{
- "type":"string",
- "enum":["START_TO_CLOSE"]
- },
- "LimitExceededFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "LimitedData":{
- "type":"string",
- "max":2048
- },
- "ListActivityTypesInput":{
- "type":"structure",
- "required":[
- "domain",
- "registrationStatus"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "name":{"shape":"Name"},
- "registrationStatus":{"shape":"RegistrationStatus"},
- "nextPageToken":{"shape":"PageToken"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"}
- }
- },
- "ListClosedWorkflowExecutionsInput":{
- "type":"structure",
- "required":["domain"],
- "members":{
- "domain":{"shape":"DomainName"},
- "startTimeFilter":{"shape":"ExecutionTimeFilter"},
- "closeTimeFilter":{"shape":"ExecutionTimeFilter"},
- "executionFilter":{"shape":"WorkflowExecutionFilter"},
- "closeStatusFilter":{"shape":"CloseStatusFilter"},
- "typeFilter":{"shape":"WorkflowTypeFilter"},
- "tagFilter":{"shape":"TagFilter"},
- "nextPageToken":{"shape":"PageToken"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"}
- }
- },
- "ListDomainsInput":{
- "type":"structure",
- "required":["registrationStatus"],
- "members":{
- "nextPageToken":{"shape":"PageToken"},
- "registrationStatus":{"shape":"RegistrationStatus"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"}
- }
- },
- "ListOpenWorkflowExecutionsInput":{
- "type":"structure",
- "required":[
- "domain",
- "startTimeFilter"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "startTimeFilter":{"shape":"ExecutionTimeFilter"},
- "typeFilter":{"shape":"WorkflowTypeFilter"},
- "tagFilter":{"shape":"TagFilter"},
- "nextPageToken":{"shape":"PageToken"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"},
- "executionFilter":{"shape":"WorkflowExecutionFilter"}
- }
- },
- "ListWorkflowTypesInput":{
- "type":"structure",
- "required":[
- "domain",
- "registrationStatus"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "name":{"shape":"Name"},
- "registrationStatus":{"shape":"RegistrationStatus"},
- "nextPageToken":{"shape":"PageToken"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"}
- }
- },
- "MarkerName":{
- "type":"string",
- "min":1,
- "max":256
- },
- "MarkerRecordedEventAttributes":{
- "type":"structure",
- "required":[
- "markerName",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "markerName":{"shape":"MarkerName"},
- "details":{"shape":"Data"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "Name":{
- "type":"string",
- "min":1,
- "max":256
- },
- "OpenDecisionTasksCount":{
- "type":"integer",
- "min":0,
- "max":1
- },
- "OperationNotPermittedFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "PageSize":{
- "type":"integer",
- "min":0,
- "max":1000
- },
- "PageToken":{
- "type":"string",
- "max":2048
- },
- "PendingTaskCount":{
- "type":"structure",
- "required":["count"],
- "members":{
- "count":{"shape":"Count"},
- "truncated":{"shape":"Truncated"}
- }
- },
- "PollForActivityTaskInput":{
- "type":"structure",
- "required":[
- "domain",
- "taskList"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "taskList":{"shape":"TaskList"},
- "identity":{"shape":"Identity"}
- }
- },
- "PollForDecisionTaskInput":{
- "type":"structure",
- "required":[
- "domain",
- "taskList"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "taskList":{"shape":"TaskList"},
- "identity":{"shape":"Identity"},
- "nextPageToken":{"shape":"PageToken"},
- "maximumPageSize":{"shape":"PageSize"},
- "reverseOrder":{"shape":"ReverseOrder"}
- }
- },
- "RecordActivityTaskHeartbeatInput":{
- "type":"structure",
- "required":["taskToken"],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "details":{"shape":"LimitedData"}
- }
- },
- "RecordMarkerDecisionAttributes":{
- "type":"structure",
- "required":["markerName"],
- "members":{
- "markerName":{"shape":"MarkerName"},
- "details":{"shape":"Data"}
- }
- },
- "RecordMarkerFailedCause":{
- "type":"string",
- "enum":["OPERATION_NOT_PERMITTED"]
- },
- "RecordMarkerFailedEventAttributes":{
- "type":"structure",
- "required":[
- "markerName",
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "markerName":{"shape":"MarkerName"},
- "cause":{"shape":"RecordMarkerFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "RegisterActivityTypeInput":{
- "type":"structure",
- "required":[
- "domain",
- "name",
- "version"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "name":{"shape":"Name"},
- "version":{"shape":"Version"},
- "description":{"shape":"Description"},
- "defaultTaskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskHeartbeatTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskList":{"shape":"TaskList"},
- "defaultTaskPriority":{"shape":"TaskPriority"},
- "defaultTaskScheduleToStartTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskScheduleToCloseTimeout":{"shape":"DurationInSecondsOptional"}
- }
- },
- "RegisterDomainInput":{
- "type":"structure",
- "required":[
- "name",
- "workflowExecutionRetentionPeriodInDays"
- ],
- "members":{
- "name":{"shape":"DomainName"},
- "description":{"shape":"Description"},
- "workflowExecutionRetentionPeriodInDays":{"shape":"DurationInDays"}
- }
- },
- "RegisterWorkflowTypeInput":{
- "type":"structure",
- "required":[
- "domain",
- "name",
- "version"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "name":{"shape":"Name"},
- "version":{"shape":"Version"},
- "description":{"shape":"Description"},
- "defaultTaskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultExecutionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskList":{"shape":"TaskList"},
- "defaultTaskPriority":{"shape":"TaskPriority"},
- "defaultChildPolicy":{"shape":"ChildPolicy"},
- "defaultLambdaRole":{"shape":"Arn"}
- }
- },
- "RegistrationStatus":{
- "type":"string",
- "enum":[
- "REGISTERED",
- "DEPRECATED"
- ]
- },
- "RequestCancelActivityTaskDecisionAttributes":{
- "type":"structure",
- "required":["activityId"],
- "members":{
- "activityId":{"shape":"ActivityId"}
- }
- },
- "RequestCancelActivityTaskFailedCause":{
- "type":"string",
- "enum":[
- "ACTIVITY_ID_UNKNOWN",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "RequestCancelActivityTaskFailedEventAttributes":{
- "type":"structure",
- "required":[
- "activityId",
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "activityId":{"shape":"ActivityId"},
- "cause":{"shape":"RequestCancelActivityTaskFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "RequestCancelExternalWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "required":["workflowId"],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "control":{"shape":"Data"}
- }
- },
- "RequestCancelExternalWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION",
- "REQUEST_CANCEL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "RequestCancelExternalWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowId",
- "cause",
- "initiatedEventId",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "cause":{"shape":"RequestCancelExternalWorkflowExecutionFailedCause"},
- "initiatedEventId":{"shape":"EventId"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "control":{"shape":"Data"}
- }
- },
- "RequestCancelExternalWorkflowExecutionInitiatedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowId",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "control":{"shape":"Data"}
- }
- },
- "RequestCancelWorkflowExecutionInput":{
- "type":"structure",
- "required":[
- "domain",
- "workflowId"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"}
- }
- },
- "RespondActivityTaskCanceledInput":{
- "type":"structure",
- "required":["taskToken"],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "details":{"shape":"Data"}
- }
- },
- "RespondActivityTaskCompletedInput":{
- "type":"structure",
- "required":["taskToken"],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "result":{"shape":"Data"}
- }
- },
- "RespondActivityTaskFailedInput":{
- "type":"structure",
- "required":["taskToken"],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "reason":{"shape":"FailureReason"},
- "details":{"shape":"Data"}
- }
- },
- "RespondDecisionTaskCompletedInput":{
- "type":"structure",
- "required":["taskToken"],
- "members":{
- "taskToken":{"shape":"TaskToken"},
- "decisions":{"shape":"DecisionList"},
- "executionContext":{"shape":"Data"}
- }
- },
- "ReverseOrder":{"type":"boolean"},
- "Run":{
- "type":"structure",
- "members":{
- "runId":{"shape":"RunId"}
- }
- },
- "RunId":{
- "type":"string",
- "min":1,
- "max":64
- },
- "RunIdOptional":{
- "type":"string",
- "max":64
- },
- "ScheduleActivityTaskDecisionAttributes":{
- "type":"structure",
- "required":[
- "activityType",
- "activityId"
- ],
- "members":{
- "activityType":{"shape":"ActivityType"},
- "activityId":{"shape":"ActivityId"},
- "control":{"shape":"Data"},
- "input":{"shape":"Data"},
- "scheduleToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "scheduleToStartTimeout":{"shape":"DurationInSecondsOptional"},
- "startToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "heartbeatTimeout":{"shape":"DurationInSecondsOptional"}
- }
- },
- "ScheduleActivityTaskFailedCause":{
- "type":"string",
- "enum":[
- "ACTIVITY_TYPE_DEPRECATED",
- "ACTIVITY_TYPE_DOES_NOT_EXIST",
- "ACTIVITY_ID_ALREADY_IN_USE",
- "OPEN_ACTIVITIES_LIMIT_EXCEEDED",
- "ACTIVITY_CREATION_RATE_EXCEEDED",
- "DEFAULT_SCHEDULE_TO_CLOSE_TIMEOUT_UNDEFINED",
- "DEFAULT_TASK_LIST_UNDEFINED",
- "DEFAULT_SCHEDULE_TO_START_TIMEOUT_UNDEFINED",
- "DEFAULT_START_TO_CLOSE_TIMEOUT_UNDEFINED",
- "DEFAULT_HEARTBEAT_TIMEOUT_UNDEFINED",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "ScheduleActivityTaskFailedEventAttributes":{
- "type":"structure",
- "required":[
- "activityType",
- "activityId",
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "activityType":{"shape":"ActivityType"},
- "activityId":{"shape":"ActivityId"},
- "cause":{"shape":"ScheduleActivityTaskFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "ScheduleLambdaFunctionDecisionAttributes":{
- "type":"structure",
- "required":[
- "id",
- "name"
- ],
- "members":{
- "id":{"shape":"FunctionId"},
- "name":{"shape":"FunctionName"},
- "input":{"shape":"FunctionInput"},
- "startToCloseTimeout":{"shape":"DurationInSecondsOptional"}
- }
- },
- "ScheduleLambdaFunctionFailedCause":{
- "type":"string",
- "enum":[
- "ID_ALREADY_IN_USE",
- "OPEN_LAMBDA_FUNCTIONS_LIMIT_EXCEEDED",
- "LAMBDA_FUNCTION_CREATION_RATE_EXCEEDED",
- "LAMBDA_SERVICE_NOT_AVAILABLE_IN_REGION"
- ]
- },
- "ScheduleLambdaFunctionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "id",
- "name",
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "id":{"shape":"FunctionId"},
- "name":{"shape":"FunctionName"},
- "cause":{"shape":"ScheduleLambdaFunctionFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "SignalExternalWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "required":[
- "workflowId",
- "signalName"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "signalName":{"shape":"SignalName"},
- "input":{"shape":"Data"},
- "control":{"shape":"Data"}
- }
- },
- "SignalExternalWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "UNKNOWN_EXTERNAL_WORKFLOW_EXECUTION",
- "SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_RATE_EXCEEDED",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "SignalExternalWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowId",
- "cause",
- "initiatedEventId",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "cause":{"shape":"SignalExternalWorkflowExecutionFailedCause"},
- "initiatedEventId":{"shape":"EventId"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "control":{"shape":"Data"}
- }
- },
- "SignalExternalWorkflowExecutionInitiatedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowId",
- "signalName",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "signalName":{"shape":"SignalName"},
- "input":{"shape":"Data"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "control":{"shape":"Data"}
- }
- },
- "SignalName":{
- "type":"string",
- "min":1,
- "max":256
- },
- "SignalWorkflowExecutionInput":{
- "type":"structure",
- "required":[
- "domain",
- "workflowId",
- "signalName"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "signalName":{"shape":"SignalName"},
- "input":{"shape":"Data"}
- }
- },
- "StartChildWorkflowExecutionDecisionAttributes":{
- "type":"structure",
- "required":[
- "workflowType",
- "workflowId"
- ],
- "members":{
- "workflowType":{"shape":"WorkflowType"},
- "workflowId":{"shape":"WorkflowId"},
- "control":{"shape":"Data"},
- "input":{"shape":"Data"},
- "executionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "taskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "childPolicy":{"shape":"ChildPolicy"},
- "tagList":{"shape":"TagList"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "StartChildWorkflowExecutionFailedCause":{
- "type":"string",
- "enum":[
- "WORKFLOW_TYPE_DOES_NOT_EXIST",
- "WORKFLOW_TYPE_DEPRECATED",
- "OPEN_CHILDREN_LIMIT_EXCEEDED",
- "OPEN_WORKFLOWS_LIMIT_EXCEEDED",
- "CHILD_CREATION_RATE_EXCEEDED",
- "WORKFLOW_ALREADY_RUNNING",
- "DEFAULT_EXECUTION_START_TO_CLOSE_TIMEOUT_UNDEFINED",
- "DEFAULT_TASK_LIST_UNDEFINED",
- "DEFAULT_TASK_START_TO_CLOSE_TIMEOUT_UNDEFINED",
- "DEFAULT_CHILD_POLICY_UNDEFINED",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "StartChildWorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowType",
- "cause",
- "workflowId",
- "initiatedEventId",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "workflowType":{"shape":"WorkflowType"},
- "cause":{"shape":"StartChildWorkflowExecutionFailedCause"},
- "workflowId":{"shape":"WorkflowId"},
- "initiatedEventId":{"shape":"EventId"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "control":{"shape":"Data"}
- }
- },
- "StartChildWorkflowExecutionInitiatedEventAttributes":{
- "type":"structure",
- "required":[
- "workflowId",
- "workflowType",
- "taskList",
- "decisionTaskCompletedEventId",
- "childPolicy"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "workflowType":{"shape":"WorkflowType"},
- "control":{"shape":"Data"},
- "input":{"shape":"Data"},
- "executionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "childPolicy":{"shape":"ChildPolicy"},
- "taskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "tagList":{"shape":"TagList"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "StartLambdaFunctionFailedCause":{
- "type":"string",
- "enum":["ASSUME_ROLE_FAILED"]
- },
- "StartLambdaFunctionFailedEventAttributes":{
- "type":"structure",
- "members":{
- "scheduledEventId":{"shape":"EventId"},
- "cause":{"shape":"StartLambdaFunctionFailedCause"},
- "message":{"shape":"CauseMessage"}
- }
- },
- "StartTimerDecisionAttributes":{
- "type":"structure",
- "required":[
- "timerId",
- "startToFireTimeout"
- ],
- "members":{
- "timerId":{"shape":"TimerId"},
- "control":{"shape":"Data"},
- "startToFireTimeout":{"shape":"DurationInSeconds"}
- }
- },
- "StartTimerFailedCause":{
- "type":"string",
- "enum":[
- "TIMER_ID_ALREADY_IN_USE",
- "OPEN_TIMERS_LIMIT_EXCEEDED",
- "TIMER_CREATION_RATE_EXCEEDED",
- "OPERATION_NOT_PERMITTED"
- ]
- },
- "StartTimerFailedEventAttributes":{
- "type":"structure",
- "required":[
- "timerId",
- "cause",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "timerId":{"shape":"TimerId"},
- "cause":{"shape":"StartTimerFailedCause"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "StartWorkflowExecutionInput":{
- "type":"structure",
- "required":[
- "domain",
- "workflowId",
- "workflowType"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "workflowId":{"shape":"WorkflowId"},
- "workflowType":{"shape":"WorkflowType"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "input":{"shape":"Data"},
- "executionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "tagList":{"shape":"TagList"},
- "taskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "childPolicy":{"shape":"ChildPolicy"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "Tag":{
- "type":"string",
- "min":1,
- "max":256
- },
- "TagFilter":{
- "type":"structure",
- "required":["tag"],
- "members":{
- "tag":{"shape":"Tag"}
- }
- },
- "TagList":{
- "type":"list",
- "member":{"shape":"Tag"},
- "max":5
- },
- "TaskList":{
- "type":"structure",
- "required":["name"],
- "members":{
- "name":{"shape":"Name"}
- }
- },
- "TaskPriority":{
- "type":"string",
- "max":11
- },
- "TaskToken":{
- "type":"string",
- "min":1,
- "max":1024
- },
- "TerminateReason":{
- "type":"string",
- "max":256
- },
- "TerminateWorkflowExecutionInput":{
- "type":"structure",
- "required":[
- "domain",
- "workflowId"
- ],
- "members":{
- "domain":{"shape":"DomainName"},
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunIdOptional"},
- "reason":{"shape":"TerminateReason"},
- "details":{"shape":"Data"},
- "childPolicy":{"shape":"ChildPolicy"}
- }
- },
- "TimerCanceledEventAttributes":{
- "type":"structure",
- "required":[
- "timerId",
- "startedEventId",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "timerId":{"shape":"TimerId"},
- "startedEventId":{"shape":"EventId"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "TimerFiredEventAttributes":{
- "type":"structure",
- "required":[
- "timerId",
- "startedEventId"
- ],
- "members":{
- "timerId":{"shape":"TimerId"},
- "startedEventId":{"shape":"EventId"}
- }
- },
- "TimerId":{
- "type":"string",
- "min":1,
- "max":256
- },
- "TimerStartedEventAttributes":{
- "type":"structure",
- "required":[
- "timerId",
- "startToFireTimeout",
- "decisionTaskCompletedEventId"
- ],
- "members":{
- "timerId":{"shape":"TimerId"},
- "control":{"shape":"Data"},
- "startToFireTimeout":{"shape":"DurationInSeconds"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "Timestamp":{"type":"timestamp"},
- "Truncated":{"type":"boolean"},
- "TypeAlreadyExistsFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "TypeDeprecatedFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "UnknownResourceFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "Version":{
- "type":"string",
- "min":1,
- "max":64
- },
- "VersionOptional":{
- "type":"string",
- "max":64
- },
- "WorkflowExecution":{
- "type":"structure",
- "required":[
- "workflowId",
- "runId"
- ],
- "members":{
- "workflowId":{"shape":"WorkflowId"},
- "runId":{"shape":"RunId"}
- }
- },
- "WorkflowExecutionAlreadyStartedFault":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "WorkflowExecutionCancelRequestedCause":{
- "type":"string",
- "enum":["CHILD_POLICY_APPLIED"]
- },
- "WorkflowExecutionCancelRequestedEventAttributes":{
- "type":"structure",
- "members":{
- "externalWorkflowExecution":{"shape":"WorkflowExecution"},
- "externalInitiatedEventId":{"shape":"EventId"},
- "cause":{"shape":"WorkflowExecutionCancelRequestedCause"}
- }
- },
- "WorkflowExecutionCanceledEventAttributes":{
- "type":"structure",
- "required":["decisionTaskCompletedEventId"],
- "members":{
- "details":{"shape":"Data"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "WorkflowExecutionCompletedEventAttributes":{
- "type":"structure",
- "required":["decisionTaskCompletedEventId"],
- "members":{
- "result":{"shape":"Data"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "WorkflowExecutionConfiguration":{
- "type":"structure",
- "required":[
- "taskStartToCloseTimeout",
- "executionStartToCloseTimeout",
- "taskList",
- "childPolicy"
- ],
- "members":{
- "taskStartToCloseTimeout":{"shape":"DurationInSeconds"},
- "executionStartToCloseTimeout":{"shape":"DurationInSeconds"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "childPolicy":{"shape":"ChildPolicy"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "WorkflowExecutionContinuedAsNewEventAttributes":{
- "type":"structure",
- "required":[
- "decisionTaskCompletedEventId",
- "newExecutionRunId",
- "taskList",
- "childPolicy",
- "workflowType"
- ],
- "members":{
- "input":{"shape":"Data"},
- "decisionTaskCompletedEventId":{"shape":"EventId"},
- "newExecutionRunId":{"shape":"RunId"},
- "executionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskList":{"shape":"TaskList"},
- "taskPriority":{"shape":"TaskPriority"},
- "taskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "childPolicy":{"shape":"ChildPolicy"},
- "tagList":{"shape":"TagList"},
- "workflowType":{"shape":"WorkflowType"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "WorkflowExecutionCount":{
- "type":"structure",
- "required":["count"],
- "members":{
- "count":{"shape":"Count"},
- "truncated":{"shape":"Truncated"}
- }
- },
- "WorkflowExecutionDetail":{
- "type":"structure",
- "required":[
- "executionInfo",
- "executionConfiguration",
- "openCounts"
- ],
- "members":{
- "executionInfo":{"shape":"WorkflowExecutionInfo"},
- "executionConfiguration":{"shape":"WorkflowExecutionConfiguration"},
- "openCounts":{"shape":"WorkflowExecutionOpenCounts"},
- "latestActivityTaskTimestamp":{"shape":"Timestamp"},
- "latestExecutionContext":{"shape":"Data"}
- }
- },
- "WorkflowExecutionFailedEventAttributes":{
- "type":"structure",
- "required":["decisionTaskCompletedEventId"],
- "members":{
- "reason":{"shape":"FailureReason"},
- "details":{"shape":"Data"},
- "decisionTaskCompletedEventId":{"shape":"EventId"}
- }
- },
- "WorkflowExecutionFilter":{
- "type":"structure",
- "required":["workflowId"],
- "members":{
- "workflowId":{"shape":"WorkflowId"}
- }
- },
- "WorkflowExecutionInfo":{
- "type":"structure",
- "required":[
- "execution",
- "workflowType",
- "startTimestamp",
- "executionStatus"
- ],
- "members":{
- "execution":{"shape":"WorkflowExecution"},
- "workflowType":{"shape":"WorkflowType"},
- "startTimestamp":{"shape":"Timestamp"},
- "closeTimestamp":{"shape":"Timestamp"},
- "executionStatus":{"shape":"ExecutionStatus"},
- "closeStatus":{"shape":"CloseStatus"},
- "parent":{"shape":"WorkflowExecution"},
- "tagList":{"shape":"TagList"},
- "cancelRequested":{"shape":"Canceled"}
- }
- },
- "WorkflowExecutionInfoList":{
- "type":"list",
- "member":{"shape":"WorkflowExecutionInfo"}
- },
- "WorkflowExecutionInfos":{
- "type":"structure",
- "required":["executionInfos"],
- "members":{
- "executionInfos":{"shape":"WorkflowExecutionInfoList"},
- "nextPageToken":{"shape":"PageToken"}
- }
- },
- "WorkflowExecutionOpenCounts":{
- "type":"structure",
- "required":[
- "openActivityTasks",
- "openDecisionTasks",
- "openTimers",
- "openChildWorkflowExecutions"
- ],
- "members":{
- "openActivityTasks":{"shape":"Count"},
- "openDecisionTasks":{"shape":"OpenDecisionTasksCount"},
- "openTimers":{"shape":"Count"},
- "openChildWorkflowExecutions":{"shape":"Count"},
- "openLambdaFunctions":{"shape":"Count"}
- }
- },
- "WorkflowExecutionSignaledEventAttributes":{
- "type":"structure",
- "required":["signalName"],
- "members":{
- "signalName":{"shape":"SignalName"},
- "input":{"shape":"Data"},
- "externalWorkflowExecution":{"shape":"WorkflowExecution"},
- "externalInitiatedEventId":{"shape":"EventId"}
- }
- },
- "WorkflowExecutionStartedEventAttributes":{
- "type":"structure",
- "required":[
- "childPolicy",
- "taskList",
- "workflowType"
- ],
- "members":{
- "input":{"shape":"Data"},
- "executionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "taskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "childPolicy":{"shape":"ChildPolicy"},
- "taskList":{"shape":"TaskList"},
- "workflowType":{"shape":"WorkflowType"},
- "tagList":{"shape":"TagList"},
- "taskPriority":{"shape":"TaskPriority"},
- "continuedExecutionRunId":{"shape":"RunIdOptional"},
- "parentWorkflowExecution":{"shape":"WorkflowExecution"},
- "parentInitiatedEventId":{"shape":"EventId"},
- "lambdaRole":{"shape":"Arn"}
- }
- },
- "WorkflowExecutionTerminatedCause":{
- "type":"string",
- "enum":[
- "CHILD_POLICY_APPLIED",
- "EVENT_LIMIT_EXCEEDED",
- "OPERATOR_INITIATED"
- ]
- },
- "WorkflowExecutionTerminatedEventAttributes":{
- "type":"structure",
- "required":["childPolicy"],
- "members":{
- "reason":{"shape":"TerminateReason"},
- "details":{"shape":"Data"},
- "childPolicy":{"shape":"ChildPolicy"},
- "cause":{"shape":"WorkflowExecutionTerminatedCause"}
- }
- },
- "WorkflowExecutionTimedOutEventAttributes":{
- "type":"structure",
- "required":[
- "timeoutType",
- "childPolicy"
- ],
- "members":{
- "timeoutType":{"shape":"WorkflowExecutionTimeoutType"},
- "childPolicy":{"shape":"ChildPolicy"}
- }
- },
- "WorkflowExecutionTimeoutType":{
- "type":"string",
- "enum":["START_TO_CLOSE"]
- },
- "WorkflowId":{
- "type":"string",
- "min":1,
- "max":256
- },
- "WorkflowType":{
- "type":"structure",
- "required":[
- "name",
- "version"
- ],
- "members":{
- "name":{"shape":"Name"},
- "version":{"shape":"Version"}
- }
- },
- "WorkflowTypeConfiguration":{
- "type":"structure",
- "members":{
- "defaultTaskStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultExecutionStartToCloseTimeout":{"shape":"DurationInSecondsOptional"},
- "defaultTaskList":{"shape":"TaskList"},
- "defaultTaskPriority":{"shape":"TaskPriority"},
- "defaultChildPolicy":{"shape":"ChildPolicy"},
- "defaultLambdaRole":{"shape":"Arn"}
- }
- },
- "WorkflowTypeDetail":{
- "type":"structure",
- "required":[
- "typeInfo",
- "configuration"
- ],
- "members":{
- "typeInfo":{"shape":"WorkflowTypeInfo"},
- "configuration":{"shape":"WorkflowTypeConfiguration"}
- }
- },
- "WorkflowTypeFilter":{
- "type":"structure",
- "required":["name"],
- "members":{
- "name":{"shape":"Name"},
- "version":{"shape":"VersionOptional"}
- }
- },
- "WorkflowTypeInfo":{
- "type":"structure",
- "required":[
- "workflowType",
- "status",
- "creationDate"
- ],
- "members":{
- "workflowType":{"shape":"WorkflowType"},
- "status":{"shape":"RegistrationStatus"},
- "description":{"shape":"Description"},
- "creationDate":{"shape":"Timestamp"},
- "deprecationDate":{"shape":"Timestamp"}
- }
- },
- "WorkflowTypeInfoList":{
- "type":"list",
- "member":{"shape":"WorkflowTypeInfo"}
- },
- "WorkflowTypeInfos":{
- "type":"structure",
- "required":["typeInfos"],
- "members":{
- "typeInfos":{"shape":"WorkflowTypeInfoList"},
- "nextPageToken":{"shape":"PageToken"}
- }
- }
- }
- }
|