1{
2  "version":"2.0",
3  "metadata":{
4    "apiVersion":"2022-09-28",
5    "endpointPrefix":"codecatalyst",
6    "jsonVersion":"1.1",
7    "protocol":"rest-json",
8    "serviceFullName":"Amazon CodeCatalyst",
9    "serviceId":"CodeCatalyst",
10    "signatureVersion":"bearer",
11    "signingName":"codecatalyst",
12    "uid":"codecatalyst-2022-09-28"
13  },
14  "operations":{
15    "CreateAccessToken":{
16      "name":"CreateAccessToken",
17      "http":{
18        "method":"PUT",
19        "requestUri":"/v1/accessTokens",
20        "responseCode":201
21      },
22      "input":{"shape":"CreateAccessTokenRequest"},
23      "output":{"shape":"CreateAccessTokenResponse"},
24      "errors":[
25        {"shape":"ThrottlingException"},
26        {"shape":"ConflictException"},
27        {"shape":"ValidationException"},
28        {"shape":"ServiceQuotaExceededException"},
29        {"shape":"ResourceNotFoundException"},
30        {"shape":"AccessDeniedException"}
31      ],
32      "documentation":"<p>Creates a personal access token (PAT) for the current user. A personal access token (PAT) is similar to a password. It is associated with your user identity for use across all spaces and projects in Amazon CodeCatalyst. You use PATs to access CodeCatalyst from resources that include integrated development environments (IDEs) and Git-based source repositories. PATs represent you in Amazon CodeCatalyst and you can manage them in your user settings.For more information, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/ipa-tokens-keys.html\">Managing personal access tokens in Amazon CodeCatalyst</a>.</p>"
33    },
34    "CreateDevEnvironment":{
35      "name":"CreateDevEnvironment",
36      "http":{
37        "method":"PUT",
38        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments",
39        "responseCode":201
40      },
41      "input":{"shape":"CreateDevEnvironmentRequest"},
42      "output":{"shape":"CreateDevEnvironmentResponse"},
43      "errors":[
44        {"shape":"ThrottlingException"},
45        {"shape":"ConflictException"},
46        {"shape":"ValidationException"},
47        {"shape":"ServiceQuotaExceededException"},
48        {"shape":"ResourceNotFoundException"},
49        {"shape":"AccessDeniedException"}
50      ],
51      "documentation":"<p>Creates a Dev Environment in Amazon CodeCatalyst, a cloud-based development environment that you can use to quickly work on the code stored in the source repositories of your project. </p> <note> <p>When created in the Amazon CodeCatalyst console, by default a Dev Environment is configured to have a 2 core processor, 4GB of RAM, and 16GB of persistent storage. None of these defaults apply to a Dev Environment created programmatically.</p> </note>",
52      "idempotent":true
53    },
54    "CreateProject":{
55      "name":"CreateProject",
56      "http":{
57        "method":"PUT",
58        "requestUri":"/v1/spaces/{spaceName}/projects",
59        "responseCode":201
60      },
61      "input":{"shape":"CreateProjectRequest"},
62      "output":{"shape":"CreateProjectResponse"},
63      "errors":[
64        {"shape":"ThrottlingException"},
65        {"shape":"ConflictException"},
66        {"shape":"ValidationException"},
67        {"shape":"ServiceQuotaExceededException"},
68        {"shape":"ResourceNotFoundException"},
69        {"shape":"AccessDeniedException"}
70      ],
71      "documentation":"<p>Creates a project in a specified space.</p>",
72      "idempotent":true
73    },
74    "CreateSourceRepository":{
75      "name":"CreateSourceRepository",
76      "http":{
77        "method":"PUT",
78        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}",
79        "responseCode":201
80      },
81      "input":{"shape":"CreateSourceRepositoryRequest"},
82      "output":{"shape":"CreateSourceRepositoryResponse"},
83      "errors":[
84        {"shape":"ThrottlingException"},
85        {"shape":"ConflictException"},
86        {"shape":"ValidationException"},
87        {"shape":"ServiceQuotaExceededException"},
88        {"shape":"ResourceNotFoundException"},
89        {"shape":"AccessDeniedException"}
90      ],
91      "documentation":"<p>Creates an empty Git-based source repository in a specified project. The repository is created with an initial empty commit with a default branch named <code>main</code>.</p>",
92      "idempotent":true
93    },
94    "CreateSourceRepositoryBranch":{
95      "name":"CreateSourceRepositoryBranch",
96      "http":{
97        "method":"PUT",
98        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches/{name}",
99        "responseCode":201
100      },
101      "input":{"shape":"CreateSourceRepositoryBranchRequest"},
102      "output":{"shape":"CreateSourceRepositoryBranchResponse"},
103      "errors":[
104        {"shape":"ThrottlingException"},
105        {"shape":"ConflictException"},
106        {"shape":"ValidationException"},
107        {"shape":"ServiceQuotaExceededException"},
108        {"shape":"ResourceNotFoundException"},
109        {"shape":"AccessDeniedException"}
110      ],
111      "documentation":"<p>Creates a branch in a specified source repository in Amazon CodeCatalyst. </p> <note> <p>This API only creates a branch in a source repository hosted in Amazon CodeCatalyst. You cannot use this API to create a branch in a linked repository.</p> </note>",
112      "idempotent":true
113    },
114    "DeleteAccessToken":{
115      "name":"DeleteAccessToken",
116      "http":{
117        "method":"DELETE",
118        "requestUri":"/v1/accessTokens/{id}",
119        "responseCode":200
120      },
121      "input":{"shape":"DeleteAccessTokenRequest"},
122      "output":{"shape":"DeleteAccessTokenResponse"},
123      "errors":[
124        {"shape":"ThrottlingException"},
125        {"shape":"ConflictException"},
126        {"shape":"ValidationException"},
127        {"shape":"ServiceQuotaExceededException"},
128        {"shape":"ResourceNotFoundException"},
129        {"shape":"AccessDeniedException"}
130      ],
131      "documentation":"<p>Deletes a specified personal access token (PAT). A personal access token can only be deleted by the user who created it.</p>",
132      "idempotent":true
133    },
134    "DeleteDevEnvironment":{
135      "name":"DeleteDevEnvironment",
136      "http":{
137        "method":"DELETE",
138        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}",
139        "responseCode":200
140      },
141      "input":{"shape":"DeleteDevEnvironmentRequest"},
142      "output":{"shape":"DeleteDevEnvironmentResponse"},
143      "errors":[
144        {"shape":"ThrottlingException"},
145        {"shape":"ConflictException"},
146        {"shape":"ValidationException"},
147        {"shape":"ServiceQuotaExceededException"},
148        {"shape":"ResourceNotFoundException"},
149        {"shape":"AccessDeniedException"}
150      ],
151      "documentation":"<p>Deletes a Dev Environment. </p>",
152      "idempotent":true
153    },
154    "DeleteProject":{
155      "name":"DeleteProject",
156      "http":{
157        "method":"DELETE",
158        "requestUri":"/v1/spaces/{spaceName}/projects/{name}",
159        "responseCode":200
160      },
161      "input":{"shape":"DeleteProjectRequest"},
162      "output":{"shape":"DeleteProjectResponse"},
163      "errors":[
164        {"shape":"ThrottlingException"},
165        {"shape":"ConflictException"},
166        {"shape":"ValidationException"},
167        {"shape":"ServiceQuotaExceededException"},
168        {"shape":"ResourceNotFoundException"},
169        {"shape":"AccessDeniedException"}
170      ],
171      "documentation":"<p>Deletes a project in a space.</p>",
172      "idempotent":true
173    },
174    "DeleteSourceRepository":{
175      "name":"DeleteSourceRepository",
176      "http":{
177        "method":"DELETE",
178        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}",
179        "responseCode":200
180      },
181      "input":{"shape":"DeleteSourceRepositoryRequest"},
182      "output":{"shape":"DeleteSourceRepositoryResponse"},
183      "errors":[
184        {"shape":"ThrottlingException"},
185        {"shape":"ConflictException"},
186        {"shape":"ValidationException"},
187        {"shape":"ServiceQuotaExceededException"},
188        {"shape":"ResourceNotFoundException"},
189        {"shape":"AccessDeniedException"}
190      ],
191      "documentation":"<p>Deletes a source repository in Amazon CodeCatalyst. You cannot use this API to delete a linked repository. It can only be used to delete a Amazon CodeCatalyst source repository.</p>",
192      "idempotent":true
193    },
194    "DeleteSpace":{
195      "name":"DeleteSpace",
196      "http":{
197        "method":"DELETE",
198        "requestUri":"/v1/spaces/{name}",
199        "responseCode":200
200      },
201      "input":{"shape":"DeleteSpaceRequest"},
202      "output":{"shape":"DeleteSpaceResponse"},
203      "errors":[
204        {"shape":"ThrottlingException"},
205        {"shape":"ConflictException"},
206        {"shape":"ValidationException"},
207        {"shape":"ServiceQuotaExceededException"},
208        {"shape":"ResourceNotFoundException"},
209        {"shape":"AccessDeniedException"}
210      ],
211      "documentation":"<p>Deletes a space.</p> <important> <p>Deleting a space cannot be undone. Additionally, since space names must be unique across Amazon CodeCatalyst, you cannot reuse names of deleted spaces.</p> </important>",
212      "idempotent":true
213    },
214    "GetDevEnvironment":{
215      "name":"GetDevEnvironment",
216      "http":{
217        "method":"GET",
218        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}",
219        "responseCode":200
220      },
221      "input":{"shape":"GetDevEnvironmentRequest"},
222      "output":{"shape":"GetDevEnvironmentResponse"},
223      "errors":[
224        {"shape":"ThrottlingException"},
225        {"shape":"ConflictException"},
226        {"shape":"ValidationException"},
227        {"shape":"ServiceQuotaExceededException"},
228        {"shape":"ResourceNotFoundException"},
229        {"shape":"AccessDeniedException"}
230      ],
231      "documentation":"<p>Returns information about a Dev Environment for a source repository in a project. Dev Environments are specific to the user who creates them.</p>"
232    },
233    "GetProject":{
234      "name":"GetProject",
235      "http":{
236        "method":"GET",
237        "requestUri":"/v1/spaces/{spaceName}/projects/{name}",
238        "responseCode":200
239      },
240      "input":{"shape":"GetProjectRequest"},
241      "output":{"shape":"GetProjectResponse"},
242      "errors":[
243        {"shape":"ThrottlingException"},
244        {"shape":"ConflictException"},
245        {"shape":"ValidationException"},
246        {"shape":"ServiceQuotaExceededException"},
247        {"shape":"ResourceNotFoundException"},
248        {"shape":"AccessDeniedException"}
249      ],
250      "documentation":"<p>Returns information about a project.</p>"
251    },
252    "GetSourceRepository":{
253      "name":"GetSourceRepository",
254      "http":{
255        "method":"GET",
256        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}",
257        "responseCode":200
258      },
259      "input":{"shape":"GetSourceRepositoryRequest"},
260      "output":{"shape":"GetSourceRepositoryResponse"},
261      "errors":[
262        {"shape":"ThrottlingException"},
263        {"shape":"ConflictException"},
264        {"shape":"ValidationException"},
265        {"shape":"ServiceQuotaExceededException"},
266        {"shape":"ResourceNotFoundException"},
267        {"shape":"AccessDeniedException"}
268      ],
269      "documentation":"<p>Returns information about a source repository.</p>"
270    },
271    "GetSourceRepositoryCloneUrls":{
272      "name":"GetSourceRepositoryCloneUrls",
273      "http":{
274        "method":"GET",
275        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/cloneUrls",
276        "responseCode":200
277      },
278      "input":{"shape":"GetSourceRepositoryCloneUrlsRequest"},
279      "output":{"shape":"GetSourceRepositoryCloneUrlsResponse"},
280      "errors":[
281        {"shape":"ThrottlingException"},
282        {"shape":"ConflictException"},
283        {"shape":"ValidationException"},
284        {"shape":"ServiceQuotaExceededException"},
285        {"shape":"ResourceNotFoundException"},
286        {"shape":"AccessDeniedException"}
287      ],
288      "documentation":"<p>Returns information about the URLs that can be used with a Git client to clone a source repository.</p>"
289    },
290    "GetSpace":{
291      "name":"GetSpace",
292      "http":{
293        "method":"GET",
294        "requestUri":"/v1/spaces/{name}",
295        "responseCode":200
296      },
297      "input":{"shape":"GetSpaceRequest"},
298      "output":{"shape":"GetSpaceResponse"},
299      "errors":[
300        {"shape":"ThrottlingException"},
301        {"shape":"ConflictException"},
302        {"shape":"ValidationException"},
303        {"shape":"ServiceQuotaExceededException"},
304        {"shape":"ResourceNotFoundException"},
305        {"shape":"AccessDeniedException"}
306      ],
307      "documentation":"<p>Returns information about an space.</p>"
308    },
309    "GetSubscription":{
310      "name":"GetSubscription",
311      "http":{
312        "method":"GET",
313        "requestUri":"/v1/spaces/{spaceName}/subscription",
314        "responseCode":200
315      },
316      "input":{"shape":"GetSubscriptionRequest"},
317      "output":{"shape":"GetSubscriptionResponse"},
318      "errors":[
319        {"shape":"ThrottlingException"},
320        {"shape":"ConflictException"},
321        {"shape":"ValidationException"},
322        {"shape":"ServiceQuotaExceededException"},
323        {"shape":"ResourceNotFoundException"},
324        {"shape":"AccessDeniedException"}
325      ],
326      "documentation":"<p>Returns information about the Amazon Web Services account used for billing purposes and the billing plan for the space.</p>"
327    },
328    "GetUserDetails":{
329      "name":"GetUserDetails",
330      "http":{
331        "method":"GET",
332        "requestUri":"/userDetails",
333        "responseCode":200
334      },
335      "input":{"shape":"GetUserDetailsRequest"},
336      "output":{"shape":"GetUserDetailsResponse"},
337      "errors":[
338        {"shape":"ThrottlingException"},
339        {"shape":"ConflictException"},
340        {"shape":"ValidationException"},
341        {"shape":"ServiceQuotaExceededException"},
342        {"shape":"ResourceNotFoundException"},
343        {"shape":"AccessDeniedException"}
344      ],
345      "documentation":"<p>Returns information about a user. </p>"
346    },
347    "GetWorkflow":{
348      "name":"GetWorkflow",
349      "http":{
350        "method":"GET",
351        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/workflows/{id}",
352        "responseCode":200
353      },
354      "input":{"shape":"GetWorkflowRequest"},
355      "output":{"shape":"GetWorkflowResponse"},
356      "errors":[
357        {"shape":"ThrottlingException"},
358        {"shape":"ConflictException"},
359        {"shape":"ValidationException"},
360        {"shape":"ServiceQuotaExceededException"},
361        {"shape":"ResourceNotFoundException"},
362        {"shape":"AccessDeniedException"}
363      ],
364      "documentation":"<p>Returns information about a workflow.</p>"
365    },
366    "GetWorkflowRun":{
367      "name":"GetWorkflowRun",
368      "http":{
369        "method":"GET",
370        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns/{id}",
371        "responseCode":200
372      },
373      "input":{"shape":"GetWorkflowRunRequest"},
374      "output":{"shape":"GetWorkflowRunResponse"},
375      "errors":[
376        {"shape":"ThrottlingException"},
377        {"shape":"ConflictException"},
378        {"shape":"ValidationException"},
379        {"shape":"ServiceQuotaExceededException"},
380        {"shape":"ResourceNotFoundException"},
381        {"shape":"AccessDeniedException"}
382      ],
383      "documentation":"<p>Returns information about a specified run of a workflow.</p>"
384    },
385    "ListAccessTokens":{
386      "name":"ListAccessTokens",
387      "http":{
388        "method":"POST",
389        "requestUri":"/v1/accessTokens",
390        "responseCode":200
391      },
392      "input":{"shape":"ListAccessTokensRequest"},
393      "output":{"shape":"ListAccessTokensResponse"},
394      "errors":[
395        {"shape":"ThrottlingException"},
396        {"shape":"ConflictException"},
397        {"shape":"ValidationException"},
398        {"shape":"ServiceQuotaExceededException"},
399        {"shape":"ResourceNotFoundException"},
400        {"shape":"AccessDeniedException"}
401      ],
402      "documentation":"<p>Lists all personal access tokens (PATs) associated with the user who calls the API. You can only list PATs associated with your Amazon Web Services Builder ID.</p>"
403    },
404    "ListDevEnvironmentSessions":{
405      "name":"ListDevEnvironmentSessions",
406      "http":{
407        "method":"POST",
408        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions",
409        "responseCode":200
410      },
411      "input":{"shape":"ListDevEnvironmentSessionsRequest"},
412      "output":{"shape":"ListDevEnvironmentSessionsResponse"},
413      "errors":[
414        {"shape":"ThrottlingException"},
415        {"shape":"ConflictException"},
416        {"shape":"ValidationException"},
417        {"shape":"ServiceQuotaExceededException"},
418        {"shape":"ResourceNotFoundException"},
419        {"shape":"AccessDeniedException"}
420      ],
421      "documentation":"<p>Retrieves a list of active sessions for a Dev Environment in a project.</p>"
422    },
423    "ListDevEnvironments":{
424      "name":"ListDevEnvironments",
425      "http":{
426        "method":"POST",
427        "requestUri":"/v1/spaces/{spaceName}/devEnvironments",
428        "responseCode":200
429      },
430      "input":{"shape":"ListDevEnvironmentsRequest"},
431      "output":{"shape":"ListDevEnvironmentsResponse"},
432      "errors":[
433        {"shape":"ThrottlingException"},
434        {"shape":"ConflictException"},
435        {"shape":"ValidationException"},
436        {"shape":"ServiceQuotaExceededException"},
437        {"shape":"ResourceNotFoundException"},
438        {"shape":"AccessDeniedException"}
439      ],
440      "documentation":"<p>Retrieves a list of Dev Environments in a project.</p>"
441    },
442    "ListEventLogs":{
443      "name":"ListEventLogs",
444      "http":{
445        "method":"POST",
446        "requestUri":"/v1/spaces/{spaceName}/eventLogs",
447        "responseCode":200
448      },
449      "input":{"shape":"ListEventLogsRequest"},
450      "output":{"shape":"ListEventLogsResponse"},
451      "errors":[
452        {"shape":"ThrottlingException"},
453        {"shape":"ConflictException"},
454        {"shape":"ValidationException"},
455        {"shape":"ServiceQuotaExceededException"},
456        {"shape":"ResourceNotFoundException"},
457        {"shape":"AccessDeniedException"}
458      ],
459      "documentation":"<p>Retrieves a list of events that occurred during a specific time in a space. You can use these events to audit user and system activity in a space. For more information, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/ipa-monitoring.html\">Monitoring</a> in the <i>Amazon CodeCatalyst User Guide</i>.</p> <note> <p>ListEventLogs guarantees events for the last 30 days in a given space. You can also view and retrieve a list of management events over the last 90 days for Amazon CodeCatalyst in the CloudTrail console by viewing Event history, or by creating a trail to create and maintain a record of events that extends past 90 days. For more information, see <a href=\"https://docs.aws.amazon.com/awscloudtrail/latest/userguide/view-cloudtrail-events.html\">Working with CloudTrail Event History</a> and <a href=\"https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-getting-started.html\">Working with CloudTrail trails</a>.</p> </note>"
460    },
461    "ListProjects":{
462      "name":"ListProjects",
463      "http":{
464        "method":"POST",
465        "requestUri":"/v1/spaces/{spaceName}/projects",
466        "responseCode":200
467      },
468      "input":{"shape":"ListProjectsRequest"},
469      "output":{"shape":"ListProjectsResponse"},
470      "errors":[
471        {"shape":"ThrottlingException"},
472        {"shape":"ConflictException"},
473        {"shape":"ValidationException"},
474        {"shape":"ServiceQuotaExceededException"},
475        {"shape":"ResourceNotFoundException"},
476        {"shape":"AccessDeniedException"}
477      ],
478      "documentation":"<p>Retrieves a list of projects.</p>"
479    },
480    "ListSourceRepositories":{
481      "name":"ListSourceRepositories",
482      "http":{
483        "method":"POST",
484        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories",
485        "responseCode":200
486      },
487      "input":{"shape":"ListSourceRepositoriesRequest"},
488      "output":{"shape":"ListSourceRepositoriesResponse"},
489      "errors":[
490        {"shape":"ThrottlingException"},
491        {"shape":"ConflictException"},
492        {"shape":"ValidationException"},
493        {"shape":"ServiceQuotaExceededException"},
494        {"shape":"ResourceNotFoundException"},
495        {"shape":"AccessDeniedException"}
496      ],
497      "documentation":"<p>Retrieves a list of source repositories in a project.</p>"
498    },
499    "ListSourceRepositoryBranches":{
500      "name":"ListSourceRepositoryBranches",
501      "http":{
502        "method":"POST",
503        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches",
504        "responseCode":200
505      },
506      "input":{"shape":"ListSourceRepositoryBranchesRequest"},
507      "output":{"shape":"ListSourceRepositoryBranchesResponse"},
508      "errors":[
509        {"shape":"ThrottlingException"},
510        {"shape":"ConflictException"},
511        {"shape":"ValidationException"},
512        {"shape":"ServiceQuotaExceededException"},
513        {"shape":"ResourceNotFoundException"},
514        {"shape":"AccessDeniedException"}
515      ],
516      "documentation":"<p>Retrieves a list of branches in a specified source repository.</p>"
517    },
518    "ListSpaces":{
519      "name":"ListSpaces",
520      "http":{
521        "method":"POST",
522        "requestUri":"/v1/spaces",
523        "responseCode":200
524      },
525      "input":{"shape":"ListSpacesRequest"},
526      "output":{"shape":"ListSpacesResponse"},
527      "errors":[
528        {"shape":"ThrottlingException"},
529        {"shape":"ConflictException"},
530        {"shape":"ValidationException"},
531        {"shape":"ServiceQuotaExceededException"},
532        {"shape":"ResourceNotFoundException"},
533        {"shape":"AccessDeniedException"}
534      ],
535      "documentation":"<p>Retrieves a list of spaces.</p>"
536    },
537    "ListWorkflowRuns":{
538      "name":"ListWorkflowRuns",
539      "http":{
540        "method":"POST",
541        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns",
542        "responseCode":200
543      },
544      "input":{"shape":"ListWorkflowRunsRequest"},
545      "output":{"shape":"ListWorkflowRunsResponse"},
546      "errors":[
547        {"shape":"ThrottlingException"},
548        {"shape":"ConflictException"},
549        {"shape":"ValidationException"},
550        {"shape":"ServiceQuotaExceededException"},
551        {"shape":"ResourceNotFoundException"},
552        {"shape":"AccessDeniedException"}
553      ],
554      "documentation":"<p>Retrieves a list of workflow runs of a specified workflow.</p>"
555    },
556    "ListWorkflows":{
557      "name":"ListWorkflows",
558      "http":{
559        "method":"POST",
560        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/workflows",
561        "responseCode":200
562      },
563      "input":{"shape":"ListWorkflowsRequest"},
564      "output":{"shape":"ListWorkflowsResponse"},
565      "errors":[
566        {"shape":"ThrottlingException"},
567        {"shape":"ConflictException"},
568        {"shape":"ValidationException"},
569        {"shape":"ServiceQuotaExceededException"},
570        {"shape":"ResourceNotFoundException"},
571        {"shape":"AccessDeniedException"}
572      ],
573      "documentation":"<p>Retrieves a list of workflows in a specified project.</p>"
574    },
575    "StartDevEnvironment":{
576      "name":"StartDevEnvironment",
577      "http":{
578        "method":"PUT",
579        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/start",
580        "responseCode":200
581      },
582      "input":{"shape":"StartDevEnvironmentRequest"},
583      "output":{"shape":"StartDevEnvironmentResponse"},
584      "errors":[
585        {"shape":"ThrottlingException"},
586        {"shape":"ConflictException"},
587        {"shape":"ValidationException"},
588        {"shape":"ServiceQuotaExceededException"},
589        {"shape":"ResourceNotFoundException"},
590        {"shape":"AccessDeniedException"}
591      ],
592      "documentation":"<p>Starts a specified Dev Environment and puts it into an active state. </p>",
593      "idempotent":true
594    },
595    "StartDevEnvironmentSession":{
596      "name":"StartDevEnvironmentSession",
597      "http":{
598        "method":"PUT",
599        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session",
600        "responseCode":200
601      },
602      "input":{"shape":"StartDevEnvironmentSessionRequest"},
603      "output":{"shape":"StartDevEnvironmentSessionResponse"},
604      "errors":[
605        {"shape":"ThrottlingException"},
606        {"shape":"ConflictException"},
607        {"shape":"ValidationException"},
608        {"shape":"ServiceQuotaExceededException"},
609        {"shape":"ResourceNotFoundException"},
610        {"shape":"AccessDeniedException"}
611      ],
612      "documentation":"<p>Starts a session for a specified Dev Environment.</p>"
613    },
614    "StartWorkflowRun":{
615      "name":"StartWorkflowRun",
616      "http":{
617        "method":"PUT",
618        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns",
619        "responseCode":200
620      },
621      "input":{"shape":"StartWorkflowRunRequest"},
622      "output":{"shape":"StartWorkflowRunResponse"},
623      "errors":[
624        {"shape":"ThrottlingException"},
625        {"shape":"ConflictException"},
626        {"shape":"ValidationException"},
627        {"shape":"ServiceQuotaExceededException"},
628        {"shape":"ResourceNotFoundException"},
629        {"shape":"AccessDeniedException"}
630      ],
631      "documentation":"<p>Begins a run of a specified workflow.</p>",
632      "idempotent":true
633    },
634    "StopDevEnvironment":{
635      "name":"StopDevEnvironment",
636      "http":{
637        "method":"PUT",
638        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/stop",
639        "responseCode":200
640      },
641      "input":{"shape":"StopDevEnvironmentRequest"},
642      "output":{"shape":"StopDevEnvironmentResponse"},
643      "errors":[
644        {"shape":"ThrottlingException"},
645        {"shape":"ConflictException"},
646        {"shape":"ValidationException"},
647        {"shape":"ServiceQuotaExceededException"},
648        {"shape":"ResourceNotFoundException"},
649        {"shape":"AccessDeniedException"}
650      ],
651      "documentation":"<p>Pauses a specified Dev Environment and places it in a non-running state. Stopped Dev Environments do not consume compute minutes.</p>",
652      "idempotent":true
653    },
654    "StopDevEnvironmentSession":{
655      "name":"StopDevEnvironmentSession",
656      "http":{
657        "method":"DELETE",
658        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session/{sessionId}",
659        "responseCode":200
660      },
661      "input":{"shape":"StopDevEnvironmentSessionRequest"},
662      "output":{"shape":"StopDevEnvironmentSessionResponse"},
663      "errors":[
664        {"shape":"ThrottlingException"},
665        {"shape":"ConflictException"},
666        {"shape":"ValidationException"},
667        {"shape":"ServiceQuotaExceededException"},
668        {"shape":"ResourceNotFoundException"},
669        {"shape":"AccessDeniedException"}
670      ],
671      "documentation":"<p>Stops a session for a specified Dev Environment.</p>",
672      "idempotent":true
673    },
674    "UpdateDevEnvironment":{
675      "name":"UpdateDevEnvironment",
676      "http":{
677        "method":"PATCH",
678        "requestUri":"/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}",
679        "responseCode":200
680      },
681      "input":{"shape":"UpdateDevEnvironmentRequest"},
682      "output":{"shape":"UpdateDevEnvironmentResponse"},
683      "errors":[
684        {"shape":"ThrottlingException"},
685        {"shape":"ConflictException"},
686        {"shape":"ValidationException"},
687        {"shape":"ServiceQuotaExceededException"},
688        {"shape":"ResourceNotFoundException"},
689        {"shape":"AccessDeniedException"}
690      ],
691      "documentation":"<p>Changes one or more values for a Dev Environment. Updating certain values of the Dev Environment will cause a restart.</p>",
692      "idempotent":true
693    },
694    "UpdateProject":{
695      "name":"UpdateProject",
696      "http":{
697        "method":"PATCH",
698        "requestUri":"/v1/spaces/{spaceName}/projects/{name}",
699        "responseCode":200
700      },
701      "input":{"shape":"UpdateProjectRequest"},
702      "output":{"shape":"UpdateProjectResponse"},
703      "errors":[
704        {"shape":"ThrottlingException"},
705        {"shape":"ConflictException"},
706        {"shape":"ValidationException"},
707        {"shape":"ServiceQuotaExceededException"},
708        {"shape":"ResourceNotFoundException"},
709        {"shape":"AccessDeniedException"}
710      ],
711      "documentation":"<p>Changes one or more values for a project.</p>",
712      "idempotent":true
713    },
714    "UpdateSpace":{
715      "name":"UpdateSpace",
716      "http":{
717        "method":"PATCH",
718        "requestUri":"/v1/spaces/{name}",
719        "responseCode":200
720      },
721      "input":{"shape":"UpdateSpaceRequest"},
722      "output":{"shape":"UpdateSpaceResponse"},
723      "errors":[
724        {"shape":"ThrottlingException"},
725        {"shape":"ConflictException"},
726        {"shape":"ValidationException"},
727        {"shape":"ServiceQuotaExceededException"},
728        {"shape":"ResourceNotFoundException"},
729        {"shape":"AccessDeniedException"}
730      ],
731      "documentation":"<p>Changes one or more values for a space.</p>",
732      "idempotent":true
733    },
734    "VerifySession":{
735      "name":"VerifySession",
736      "http":{
737        "method":"GET",
738        "requestUri":"/session",
739        "responseCode":200
740      },
741      "output":{"shape":"VerifySessionResponse"},
742      "errors":[
743        {"shape":"ThrottlingException"},
744        {"shape":"ConflictException"},
745        {"shape":"ValidationException"},
746        {"shape":"ServiceQuotaExceededException"},
747        {"shape":"ResourceNotFoundException"},
748        {"shape":"AccessDeniedException"}
749      ],
750      "documentation":"<p>Verifies whether the calling user has a valid Amazon CodeCatalyst login and session. If successful, this returns the ID of the user in Amazon CodeCatalyst.</p>"
751    }
752  },
753  "shapes":{
754    "AccessDeniedException":{
755      "type":"structure",
756      "required":["message"],
757      "members":{
758        "message":{"shape":"String"}
759      },
760      "documentation":"<p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>",
761      "error":{
762        "httpStatusCode":403,
763        "senderFault":true
764      },
765      "exception":true
766    },
767    "AccessTokenId":{
768      "type":"string",
769      "max":36,
770      "min":1
771    },
772    "AccessTokenName":{
773      "type":"string",
774      "max":100,
775      "min":1
776    },
777    "AccessTokenSecret":{
778      "type":"string",
779      "max":4000,
780      "min":1,
781      "sensitive":true
782    },
783    "AccessTokenSummaries":{
784      "type":"list",
785      "member":{"shape":"AccessTokenSummary"}
786    },
787    "AccessTokenSummary":{
788      "type":"structure",
789      "required":[
790        "id",
791        "name"
792      ],
793      "members":{
794        "id":{
795          "shape":"AccessTokenId",
796          "documentation":"<p>The system-generated ID of the personal access token.</p>"
797        },
798        "name":{
799          "shape":"AccessTokenName",
800          "documentation":"<p>The friendly name of the personal access token.</p>"
801        },
802        "expiresTime":{
803          "shape":"SyntheticTimestamp_date_time",
804          "documentation":"<p>The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
805        }
806      },
807      "documentation":"<p>Information about a specified personal access token (PAT).</p>"
808    },
809    "Boolean":{
810      "type":"boolean",
811      "box":true
812    },
813    "ClientToken":{
814      "type":"string",
815      "max":1024,
816      "min":1
817    },
818    "ComparisonOperator":{
819      "type":"string",
820      "enum":[
821        "EQ",
822        "GT",
823        "GE",
824        "LT",
825        "LE",
826        "BEGINS_WITH"
827      ]
828    },
829    "ConflictException":{
830      "type":"structure",
831      "required":["message"],
832      "members":{
833        "message":{"shape":"String"}
834      },
835      "documentation":"<p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request. Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>",
836      "error":{
837        "httpStatusCode":409,
838        "senderFault":true
839      },
840      "exception":true
841    },
842    "CreateAccessTokenRequest":{
843      "type":"structure",
844      "required":["name"],
845      "members":{
846        "name":{
847          "shape":"AccessTokenName",
848          "documentation":"<p>The friendly name of the personal access token.</p>"
849        },
850        "expiresTime":{
851          "shape":"SyntheticTimestamp_date_time",
852          "documentation":"<p>The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
853        }
854      }
855    },
856    "CreateAccessTokenResponse":{
857      "type":"structure",
858      "required":[
859        "secret",
860        "name",
861        "expiresTime",
862        "accessTokenId"
863      ],
864      "members":{
865        "secret":{
866          "shape":"AccessTokenSecret",
867          "documentation":"<p>The secret value of the personal access token.</p>"
868        },
869        "name":{
870          "shape":"AccessTokenName",
871          "documentation":"<p>The friendly name of the personal access token.</p>"
872        },
873        "expiresTime":{
874          "shape":"SyntheticTimestamp_date_time",
875          "documentation":"<p>The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>. If not specified, the default is one year from creation.</p>"
876        },
877        "accessTokenId":{
878          "shape":"AccessTokenId",
879          "documentation":"<p>The system-generated unique ID of the access token.</p>"
880        }
881      }
882    },
883    "CreateDevEnvironmentRequest":{
884      "type":"structure",
885      "required":[
886        "spaceName",
887        "projectName",
888        "instanceType",
889        "persistentStorage"
890      ],
891      "members":{
892        "spaceName":{
893          "shape":"NameString",
894          "documentation":"<p>The name of the space.</p>",
895          "location":"uri",
896          "locationName":"spaceName"
897        },
898        "projectName":{
899          "shape":"NameString",
900          "documentation":"<p>The name of the project in the space.</p>",
901          "location":"uri",
902          "locationName":"projectName"
903        },
904        "repositories":{
905          "shape":"RepositoriesInput",
906          "documentation":"<p>The source repository that contains the branch to clone into the Dev Environment. </p>"
907        },
908        "clientToken":{
909          "shape":"ClientToken",
910          "documentation":"<p>A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>"
911        },
912        "alias":{
913          "shape":"CreateDevEnvironmentRequestAliasString",
914          "documentation":"<p>The user-defined alias for a Dev Environment.</p>"
915        },
916        "ides":{
917          "shape":"IdeConfigurationList",
918          "documentation":"<p>Information about the integrated development environment (IDE) configured for a Dev Environment.</p> <note> <p>An IDE is required to create a Dev Environment. For Dev Environment creation, this field contains configuration information and must be provided. </p> </note>"
919        },
920        "instanceType":{
921          "shape":"InstanceType",
922          "documentation":"<p>The Amazon EC2 instace type to use for the Dev Environment. </p>"
923        },
924        "inactivityTimeoutMinutes":{
925          "shape":"InactivityTimeoutMinutes",
926          "documentation":"<p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.</p>"
927        },
928        "persistentStorage":{
929          "shape":"PersistentStorageConfiguration",
930          "documentation":"<p>Information about the amount of storage allocated to the Dev Environment. </p> <note> <p>By default, a Dev Environment is configured to have 16GB of persistent storage when created from the Amazon CodeCatalyst console, but there is no default when programmatically creating a Dev Environment. Valid values for persistent storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.</p> </note>"
931        },
932        "vpcConnectionName":{
933          "shape":"NameString",
934          "documentation":"<p>The name of the connection to use connect to a Amazon VPC.</p>"
935        }
936      }
937    },
938    "CreateDevEnvironmentRequestAliasString":{
939      "type":"string",
940      "max":128,
941      "min":1,
942      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
943    },
944    "CreateDevEnvironmentResponse":{
945      "type":"structure",
946      "required":[
947        "spaceName",
948        "projectName",
949        "id"
950      ],
951      "members":{
952        "spaceName":{
953          "shape":"NameString",
954          "documentation":"<p>The name of the space.</p>"
955        },
956        "projectName":{
957          "shape":"NameString",
958          "documentation":"<p>The name of the project in the space.</p>"
959        },
960        "id":{
961          "shape":"Uuid",
962          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>"
963        },
964        "vpcConnectionName":{
965          "shape":"NameString",
966          "documentation":"<p>The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.</p>"
967        }
968      }
969    },
970    "CreateProjectRequest":{
971      "type":"structure",
972      "required":[
973        "spaceName",
974        "displayName"
975      ],
976      "members":{
977        "spaceName":{
978          "shape":"NameString",
979          "documentation":"<p>The name of the space.</p>",
980          "location":"uri",
981          "locationName":"spaceName"
982        },
983        "displayName":{
984          "shape":"ProjectDisplayName",
985          "documentation":"<p>The friendly name of the project that will be displayed to users.</p>"
986        },
987        "description":{
988          "shape":"ProjectDescription",
989          "documentation":"<p>The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose.</p>"
990        }
991      }
992    },
993    "CreateProjectResponse":{
994      "type":"structure",
995      "required":["name"],
996      "members":{
997        "spaceName":{
998          "shape":"NameString",
999          "documentation":"<p>The name of the space.</p>"
1000        },
1001        "name":{
1002          "shape":"NameString",
1003          "documentation":"<p>The name of the project in the space.</p>"
1004        },
1005        "displayName":{
1006          "shape":"String",
1007          "documentation":"<p>The friendly name of the project.</p>"
1008        },
1009        "description":{
1010          "shape":"String",
1011          "documentation":"<p>The description of the project.</p>"
1012        }
1013      }
1014    },
1015    "CreateSourceRepositoryBranchRequest":{
1016      "type":"structure",
1017      "required":[
1018        "spaceName",
1019        "projectName",
1020        "sourceRepositoryName",
1021        "name"
1022      ],
1023      "members":{
1024        "spaceName":{
1025          "shape":"NameString",
1026          "documentation":"<p>The name of the space.</p>",
1027          "location":"uri",
1028          "locationName":"spaceName"
1029        },
1030        "projectName":{
1031          "shape":"NameString",
1032          "documentation":"<p>The name of the project in the space.</p>",
1033          "location":"uri",
1034          "locationName":"projectName"
1035        },
1036        "sourceRepositoryName":{
1037          "shape":"SourceRepositoryNameString",
1038          "documentation":"<p>The name of the repository where you want to create a branch.</p>",
1039          "location":"uri",
1040          "locationName":"sourceRepositoryName"
1041        },
1042        "name":{
1043          "shape":"SourceRepositoryBranchString",
1044          "documentation":"<p>The name for the branch you're creating.</p>",
1045          "location":"uri",
1046          "locationName":"name"
1047        },
1048        "headCommitId":{
1049          "shape":"String",
1050          "documentation":"<p>The commit ID in an existing branch from which you want to create the new branch.</p>"
1051        }
1052      }
1053    },
1054    "CreateSourceRepositoryBranchResponse":{
1055      "type":"structure",
1056      "members":{
1057        "ref":{
1058          "shape":"SourceRepositoryBranchRefString",
1059          "documentation":"<p>The Git reference name of the branch.</p>"
1060        },
1061        "name":{
1062          "shape":"SourceRepositoryBranchString",
1063          "documentation":"<p>The name of the newly created branch.</p>"
1064        },
1065        "lastUpdatedTime":{
1066          "shape":"SyntheticTimestamp_date_time",
1067          "documentation":"<p>The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
1068        },
1069        "headCommitId":{
1070          "shape":"String",
1071          "documentation":"<p>The commit ID of the tip of the newly created branch.</p>"
1072        }
1073      }
1074    },
1075    "CreateSourceRepositoryRequest":{
1076      "type":"structure",
1077      "required":[
1078        "spaceName",
1079        "projectName",
1080        "name"
1081      ],
1082      "members":{
1083        "spaceName":{
1084          "shape":"NameString",
1085          "documentation":"<p>The name of the space.</p>",
1086          "location":"uri",
1087          "locationName":"spaceName"
1088        },
1089        "projectName":{
1090          "shape":"NameString",
1091          "documentation":"<p>The name of the project in the space.</p>",
1092          "location":"uri",
1093          "locationName":"projectName"
1094        },
1095        "name":{
1096          "shape":"SourceRepositoryNameString",
1097          "documentation":"<p>The name of the source repository. For more information about name requirements, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/source-quotas.html\">Quotas for source repositories</a>.</p>",
1098          "location":"uri",
1099          "locationName":"name"
1100        },
1101        "description":{
1102          "shape":"SourceRepositoryDescriptionString",
1103          "documentation":"<p>The description of the source repository.</p>"
1104        }
1105      }
1106    },
1107    "CreateSourceRepositoryResponse":{
1108      "type":"structure",
1109      "required":[
1110        "spaceName",
1111        "projectName",
1112        "name"
1113      ],
1114      "members":{
1115        "spaceName":{
1116          "shape":"NameString",
1117          "documentation":"<p>The name of the space.</p>"
1118        },
1119        "projectName":{
1120          "shape":"NameString",
1121          "documentation":"<p>The name of the project in the space.</p>"
1122        },
1123        "name":{
1124          "shape":"SourceRepositoryNameString",
1125          "documentation":"<p>The name of the source repository.</p>"
1126        },
1127        "description":{
1128          "shape":"SourceRepositoryDescriptionString",
1129          "documentation":"<p>The description of the source repository.</p>"
1130        }
1131      }
1132    },
1133    "DeleteAccessTokenRequest":{
1134      "type":"structure",
1135      "required":["id"],
1136      "members":{
1137        "id":{
1138          "shape":"AccessTokenId",
1139          "documentation":"<p>The ID of the personal access token to delete. You can find the IDs of all PATs associated with your Amazon Web Services Builder ID in a space by calling <a>ListAccessTokens</a>.</p>",
1140          "location":"uri",
1141          "locationName":"id"
1142        }
1143      }
1144    },
1145    "DeleteAccessTokenResponse":{
1146      "type":"structure",
1147      "members":{
1148      }
1149    },
1150    "DeleteDevEnvironmentRequest":{
1151      "type":"structure",
1152      "required":[
1153        "spaceName",
1154        "projectName",
1155        "id"
1156      ],
1157      "members":{
1158        "spaceName":{
1159          "shape":"NameString",
1160          "documentation":"<p>The name of the space.</p>",
1161          "location":"uri",
1162          "locationName":"spaceName"
1163        },
1164        "projectName":{
1165          "shape":"NameString",
1166          "documentation":"<p>The name of the project in the space.</p>",
1167          "location":"uri",
1168          "locationName":"projectName"
1169        },
1170        "id":{
1171          "shape":"Uuid",
1172          "documentation":"<p>The system-generated unique ID of the Dev Environment you want to delete. To retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p>",
1173          "location":"uri",
1174          "locationName":"id"
1175        }
1176      }
1177    },
1178    "DeleteDevEnvironmentResponse":{
1179      "type":"structure",
1180      "required":[
1181        "spaceName",
1182        "projectName",
1183        "id"
1184      ],
1185      "members":{
1186        "spaceName":{
1187          "shape":"NameString",
1188          "documentation":"<p>The name of the space.</p>"
1189        },
1190        "projectName":{
1191          "shape":"NameString",
1192          "documentation":"<p>The name of the project in the space.</p>"
1193        },
1194        "id":{
1195          "shape":"Uuid",
1196          "documentation":"<p>The system-generated unique ID of the deleted Dev Environment. </p>"
1197        }
1198      }
1199    },
1200    "DeleteProjectRequest":{
1201      "type":"structure",
1202      "required":[
1203        "spaceName",
1204        "name"
1205      ],
1206      "members":{
1207        "spaceName":{
1208          "shape":"NameString",
1209          "documentation":"<p>The name of the space.</p>",
1210          "location":"uri",
1211          "locationName":"spaceName"
1212        },
1213        "name":{
1214          "shape":"NameString",
1215          "documentation":"<p>The name of the project in the space. To retrieve a list of project names, use <a>ListProjects</a>.</p>",
1216          "location":"uri",
1217          "locationName":"name"
1218        }
1219      }
1220    },
1221    "DeleteProjectResponse":{
1222      "type":"structure",
1223      "required":[
1224        "spaceName",
1225        "name"
1226      ],
1227      "members":{
1228        "spaceName":{
1229          "shape":"NameString",
1230          "documentation":"<p>The name of the space.</p>"
1231        },
1232        "name":{
1233          "shape":"NameString",
1234          "documentation":"<p>The name of the project in the space.</p>"
1235        },
1236        "displayName":{
1237          "shape":"String",
1238          "documentation":"<p>The friendly name displayed to users of the project in Amazon CodeCatalyst.</p>"
1239        }
1240      }
1241    },
1242    "DeleteSourceRepositoryRequest":{
1243      "type":"structure",
1244      "required":[
1245        "spaceName",
1246        "projectName",
1247        "name"
1248      ],
1249      "members":{
1250        "spaceName":{
1251          "shape":"NameString",
1252          "documentation":"<p>The name of the space.</p>",
1253          "location":"uri",
1254          "locationName":"spaceName"
1255        },
1256        "projectName":{
1257          "shape":"NameString",
1258          "documentation":"<p>The name of the project in the space.</p>",
1259          "location":"uri",
1260          "locationName":"projectName"
1261        },
1262        "name":{
1263          "shape":"SourceRepositoryNameString",
1264          "documentation":"<p>The name of the source repository.</p>",
1265          "location":"uri",
1266          "locationName":"name"
1267        }
1268      }
1269    },
1270    "DeleteSourceRepositoryResponse":{
1271      "type":"structure",
1272      "required":[
1273        "spaceName",
1274        "projectName",
1275        "name"
1276      ],
1277      "members":{
1278        "spaceName":{
1279          "shape":"NameString",
1280          "documentation":"<p>The name of the space.</p>"
1281        },
1282        "projectName":{
1283          "shape":"NameString",
1284          "documentation":"<p>The name of the project in the space.</p>"
1285        },
1286        "name":{
1287          "shape":"SourceRepositoryNameString",
1288          "documentation":"<p>The name of the repository.</p>"
1289        }
1290      }
1291    },
1292    "DeleteSpaceRequest":{
1293      "type":"structure",
1294      "required":["name"],
1295      "members":{
1296        "name":{
1297          "shape":"NameString",
1298          "documentation":"<p>The name of the space. To retrieve a list of space names, use <a>ListSpaces</a>.</p>",
1299          "location":"uri",
1300          "locationName":"name"
1301        }
1302      }
1303    },
1304    "DeleteSpaceResponse":{
1305      "type":"structure",
1306      "required":["name"],
1307      "members":{
1308        "name":{
1309          "shape":"NameString",
1310          "documentation":"<p>The name of the space.</p>"
1311        },
1312        "displayName":{
1313          "shape":"String",
1314          "documentation":"<p>The friendly name of the space displayed to users of the space in Amazon CodeCatalyst.</p>"
1315        }
1316      }
1317    },
1318    "DevEnvironmentAccessDetails":{
1319      "type":"structure",
1320      "required":[
1321        "streamUrl",
1322        "tokenValue"
1323      ],
1324      "members":{
1325        "streamUrl":{
1326          "shape":"SensitiveString",
1327          "documentation":"<p>The URL used to send commands to and from the Dev Environment.</p>"
1328        },
1329        "tokenValue":{
1330          "shape":"SensitiveString",
1331          "documentation":"<p>An encrypted token value that contains session and caller information used to authenticate the connection.</p>"
1332        }
1333      },
1334      "documentation":"<p>Information about connection details for a Dev Environment.</p>",
1335      "sensitive":true
1336    },
1337    "DevEnvironmentRepositorySummaries":{
1338      "type":"list",
1339      "member":{"shape":"DevEnvironmentRepositorySummary"}
1340    },
1341    "DevEnvironmentRepositorySummary":{
1342      "type":"structure",
1343      "required":["repositoryName"],
1344      "members":{
1345        "repositoryName":{
1346          "shape":"SourceRepositoryNameString",
1347          "documentation":"<p>The name of the source repository.</p>"
1348        },
1349        "branchName":{
1350          "shape":"SourceRepositoryBranchString",
1351          "documentation":"<p>The name of the branch in a source repository cloned into the Dev Environment. </p>"
1352        }
1353      },
1354      "documentation":"<p>Information about the source repsitory for a Dev Environment. </p>"
1355    },
1356    "DevEnvironmentSessionConfiguration":{
1357      "type":"structure",
1358      "required":["sessionType"],
1359      "members":{
1360        "sessionType":{
1361          "shape":"DevEnvironmentSessionType",
1362          "documentation":"<p>The type of the session.</p>"
1363        },
1364        "executeCommandSessionConfiguration":{
1365          "shape":"ExecuteCommandSessionConfiguration",
1366          "documentation":"<p>Information about optional commands that will be run on the Dev Environment when the SSH session begins.</p>"
1367        }
1368      },
1369      "documentation":"<p>Information about the configuration of a Dev Environment session.</p>"
1370    },
1371    "DevEnvironmentSessionSummary":{
1372      "type":"structure",
1373      "required":[
1374        "spaceName",
1375        "projectName",
1376        "devEnvironmentId",
1377        "startedTime",
1378        "id"
1379      ],
1380      "members":{
1381        "spaceName":{
1382          "shape":"NameString",
1383          "documentation":"<p>The name of the space.</p>"
1384        },
1385        "projectName":{
1386          "shape":"NameString",
1387          "documentation":"<p>The name of the project in the space.</p>"
1388        },
1389        "devEnvironmentId":{
1390          "shape":"Uuid",
1391          "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>"
1392        },
1393        "startedTime":{
1394          "shape":"SyntheticTimestamp_date_time",
1395          "documentation":"<p>The date and time the session started, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
1396        },
1397        "id":{
1398          "shape":"DevEnvironmentSessionSummaryIdString",
1399          "documentation":"<p>The system-generated unique ID of the Dev Environment session.</p>"
1400        }
1401      },
1402      "documentation":"<p>Information about active sessions for a Dev Environment.</p>"
1403    },
1404    "DevEnvironmentSessionSummaryIdString":{
1405      "type":"string",
1406      "max":96,
1407      "min":1
1408    },
1409    "DevEnvironmentSessionType":{
1410      "type":"string",
1411      "enum":[
1412        "SSM",
1413        "SSH"
1414      ]
1415    },
1416    "DevEnvironmentSessionsSummaryList":{
1417      "type":"list",
1418      "member":{"shape":"DevEnvironmentSessionSummary"}
1419    },
1420    "DevEnvironmentStatus":{
1421      "type":"string",
1422      "enum":[
1423        "PENDING",
1424        "RUNNING",
1425        "STARTING",
1426        "STOPPING",
1427        "STOPPED",
1428        "FAILED",
1429        "DELETING",
1430        "DELETED"
1431      ]
1432    },
1433    "DevEnvironmentSummary":{
1434      "type":"structure",
1435      "required":[
1436        "id",
1437        "lastUpdatedTime",
1438        "creatorId",
1439        "status",
1440        "repositories",
1441        "instanceType",
1442        "inactivityTimeoutMinutes",
1443        "persistentStorage"
1444      ],
1445      "members":{
1446        "spaceName":{
1447          "shape":"NameString",
1448          "documentation":"<p>The name of the space.</p>"
1449        },
1450        "projectName":{
1451          "shape":"NameString",
1452          "documentation":"<p>The name of the project in the space.</p>"
1453        },
1454        "id":{
1455          "shape":"Uuid",
1456          "documentation":"<p>The system-generated unique ID for the Dev Environment. </p>"
1457        },
1458        "lastUpdatedTime":{
1459          "shape":"SyntheticTimestamp_date_time",
1460          "documentation":"<p>The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
1461        },
1462        "creatorId":{
1463          "shape":"DevEnvironmentSummaryCreatorIdString",
1464          "documentation":"<p>The system-generated unique ID of the user who created the Dev Environment. </p>"
1465        },
1466        "status":{
1467          "shape":"DevEnvironmentStatus",
1468          "documentation":"<p>The status of the Dev Environment. </p>"
1469        },
1470        "statusReason":{
1471          "shape":"StatusReason",
1472          "documentation":"<p>The reason for the status.</p>"
1473        },
1474        "repositories":{
1475          "shape":"DevEnvironmentRepositorySummaries",
1476          "documentation":"<p>Information about the repositories that will be cloned into the Dev Environment. If no rvalue is specified, no repository is cloned.</p>"
1477        },
1478        "alias":{
1479          "shape":"DevEnvironmentSummaryAliasString",
1480          "documentation":"<p>The user-specified alias for the Dev Environment.</p>"
1481        },
1482        "ides":{
1483          "shape":"Ides",
1484          "documentation":"<p>Information about the integrated development environment (IDE) configured for a Dev Environment.</p>"
1485        },
1486        "instanceType":{
1487          "shape":"InstanceType",
1488          "documentation":"<p>The Amazon EC2 instace type used for the Dev Environment. </p>"
1489        },
1490        "inactivityTimeoutMinutes":{
1491          "shape":"InactivityTimeoutMinutes",
1492          "documentation":"<p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Dev Environments consume compute minutes when running.</p>"
1493        },
1494        "persistentStorage":{
1495          "shape":"PersistentStorage",
1496          "documentation":"<p>Information about the configuration of persistent storage for the Dev Environment.</p>"
1497        },
1498        "vpcConnectionName":{
1499          "shape":"NameString",
1500          "documentation":"<p>The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.</p>"
1501        }
1502      },
1503      "documentation":"<p>Information about a Dev Environment. </p>"
1504    },
1505    "DevEnvironmentSummaryAliasString":{
1506      "type":"string",
1507      "max":128,
1508      "min":0
1509    },
1510    "DevEnvironmentSummaryCreatorIdString":{
1511      "type":"string",
1512      "max":1024,
1513      "min":0
1514    },
1515    "DevEnvironmentSummaryList":{
1516      "type":"list",
1517      "member":{"shape":"DevEnvironmentSummary"}
1518    },
1519    "EmailAddress":{
1520      "type":"structure",
1521      "members":{
1522        "email":{
1523          "shape":"String",
1524          "documentation":"<p>The email address.</p>"
1525        },
1526        "verified":{
1527          "shape":"Boolean",
1528          "documentation":"<p>Whether the email address has been verified.</p>"
1529        }
1530      },
1531      "documentation":"<p>Information about an email address.</p>"
1532    },
1533    "EventLogEntries":{
1534      "type":"list",
1535      "member":{"shape":"EventLogEntry"}
1536    },
1537    "EventLogEntry":{
1538      "type":"structure",
1539      "required":[
1540        "id",
1541        "eventName",
1542        "eventType",
1543        "eventCategory",
1544        "eventSource",
1545        "eventTime",
1546        "operationType",
1547        "userIdentity"
1548      ],
1549      "members":{
1550        "id":{
1551          "shape":"String",
1552          "documentation":"<p>The system-generated unique ID of the event.</p>"
1553        },
1554        "eventName":{
1555          "shape":"String",
1556          "documentation":"<p>The name of the event.</p>"
1557        },
1558        "eventType":{
1559          "shape":"String",
1560          "documentation":"<p>The type of the event.</p>"
1561        },
1562        "eventCategory":{
1563          "shape":"String",
1564          "documentation":"<p>The category for the event.</p>"
1565        },
1566        "eventSource":{
1567          "shape":"String",
1568          "documentation":"<p>The source of the event.</p>"
1569        },
1570        "eventTime":{
1571          "shape":"SyntheticTimestamp_date_time",
1572          "documentation":"<p>The time the event took place, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
1573        },
1574        "operationType":{
1575          "shape":"OperationType",
1576          "documentation":"<p>The type of the event.</p>"
1577        },
1578        "userIdentity":{
1579          "shape":"UserIdentity",
1580          "documentation":"<p>The system-generated unique ID of the user whose actions are recorded in the event.</p>"
1581        },
1582        "projectInformation":{
1583          "shape":"ProjectInformation",
1584          "documentation":"<p>Information about the project where the event occurred.</p>"
1585        },
1586        "requestId":{
1587          "shape":"String",
1588          "documentation":"<p>The system-generated unique ID of the request.</p>"
1589        },
1590        "requestPayload":{
1591          "shape":"EventPayload",
1592          "documentation":"<p>Information about the payload of the request.</p>"
1593        },
1594        "responsePayload":{
1595          "shape":"EventPayload",
1596          "documentation":"<p>Information about the payload of the response, if any.</p>"
1597        },
1598        "errorCode":{
1599          "shape":"String",
1600          "documentation":"<p>The code of the error, if any.</p>"
1601        },
1602        "sourceIpAddress":{
1603          "shape":"String",
1604          "documentation":"<p>The IP address of the user whose actions are recorded in the event.</p>"
1605        },
1606        "userAgent":{
1607          "shape":"String",
1608          "documentation":"<p>The user agent whose actions are recorded in the event.</p>"
1609        }
1610      },
1611      "documentation":"<p>Information about an entry in an event log of Amazon CodeCatalyst activity.</p>"
1612    },
1613    "EventPayload":{
1614      "type":"structure",
1615      "members":{
1616        "contentType":{
1617          "shape":"String",
1618          "documentation":"<p>The type of content in the event payload.</p>"
1619        },
1620        "data":{
1621          "shape":"String",
1622          "documentation":"<p>The data included in the event payload.</p>"
1623        }
1624      },
1625      "documentation":"<p>Information about the payload of an event recording Amazon CodeCatalyst activity.</p>"
1626    },
1627    "ExecuteCommandSessionConfiguration":{
1628      "type":"structure",
1629      "required":["command"],
1630      "members":{
1631        "command":{
1632          "shape":"ExecuteCommandSessionConfigurationCommandString",
1633          "documentation":"<p>The command used at the beginning of the SSH session to a Dev Environment.</p>"
1634        },
1635        "arguments":{
1636          "shape":"ExecuteCommandSessionConfigurationArguments",
1637          "documentation":"<p>An array of arguments containing arguments and members.</p>"
1638        }
1639      },
1640      "documentation":"<p>Information about the commands that will be run on a Dev Environment when an SSH session begins.</p>"
1641    },
1642    "ExecuteCommandSessionConfigurationArguments":{
1643      "type":"list",
1644      "member":{"shape":"ExecuteCommandSessionConfigurationArgumentsMemberString"}
1645    },
1646    "ExecuteCommandSessionConfigurationArgumentsMemberString":{
1647      "type":"string",
1648      "max":255,
1649      "min":1
1650    },
1651    "ExecuteCommandSessionConfigurationCommandString":{
1652      "type":"string",
1653      "max":255,
1654      "min":1
1655    },
1656    "Filter":{
1657      "type":"structure",
1658      "required":[
1659        "key",
1660        "values"
1661      ],
1662      "members":{
1663        "key":{
1664          "shape":"String",
1665          "documentation":"<p>A key that can be used to sort results.</p>"
1666        },
1667        "values":{
1668          "shape":"StringList",
1669          "documentation":"<p>The values of the key.</p>"
1670        },
1671        "comparisonOperator":{
1672          "shape":"String",
1673          "documentation":"<p>The operator used to compare the fields.</p>"
1674        }
1675      },
1676      "documentation":"<p>Information about a filter used to limit results of a query.</p>"
1677    },
1678    "FilterKey":{
1679      "type":"string",
1680      "enum":[
1681        "hasAccessTo",
1682        "name"
1683      ]
1684    },
1685    "Filters":{
1686      "type":"list",
1687      "member":{"shape":"Filter"}
1688    },
1689    "GetDevEnvironmentRequest":{
1690      "type":"structure",
1691      "required":[
1692        "spaceName",
1693        "projectName",
1694        "id"
1695      ],
1696      "members":{
1697        "spaceName":{
1698          "shape":"NameString",
1699          "documentation":"<p>The name of the space.</p>",
1700          "location":"uri",
1701          "locationName":"spaceName"
1702        },
1703        "projectName":{
1704          "shape":"NameString",
1705          "documentation":"<p>The name of the project in the space.</p>",
1706          "location":"uri",
1707          "locationName":"projectName"
1708        },
1709        "id":{
1710          "shape":"Uuid",
1711          "documentation":"<p>The system-generated unique ID of the Dev Environment for which you want to view information. To retrieve a list of Dev Environment IDs, use <a>ListDevEnvironments</a>.</p>",
1712          "location":"uri",
1713          "locationName":"id"
1714        }
1715      }
1716    },
1717    "GetDevEnvironmentResponse":{
1718      "type":"structure",
1719      "required":[
1720        "spaceName",
1721        "projectName",
1722        "id",
1723        "lastUpdatedTime",
1724        "creatorId",
1725        "status",
1726        "repositories",
1727        "instanceType",
1728        "inactivityTimeoutMinutes",
1729        "persistentStorage"
1730      ],
1731      "members":{
1732        "spaceName":{
1733          "shape":"NameString",
1734          "documentation":"<p>The name of the space.</p>"
1735        },
1736        "projectName":{
1737          "shape":"NameString",
1738          "documentation":"<p>The name of the project in the space.</p>"
1739        },
1740        "id":{
1741          "shape":"Uuid",
1742          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>"
1743        },
1744        "lastUpdatedTime":{
1745          "shape":"SyntheticTimestamp_date_time",
1746          "documentation":"<p>The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
1747        },
1748        "creatorId":{
1749          "shape":"GetDevEnvironmentResponseCreatorIdString",
1750          "documentation":"<p>The system-generated unique ID of the user who created the Dev Environment. </p>"
1751        },
1752        "status":{
1753          "shape":"DevEnvironmentStatus",
1754          "documentation":"<p>The current status of the Dev Environment.</p>"
1755        },
1756        "statusReason":{
1757          "shape":"StatusReason",
1758          "documentation":"<p>The reason for the status.</p>"
1759        },
1760        "repositories":{
1761          "shape":"DevEnvironmentRepositorySummaries",
1762          "documentation":"<p>The source repository that contains the branch cloned into the Dev Environment. </p>"
1763        },
1764        "alias":{
1765          "shape":"GetDevEnvironmentResponseAliasString",
1766          "documentation":"<p>The user-specified alias for the Dev Environment. </p>"
1767        },
1768        "ides":{
1769          "shape":"Ides",
1770          "documentation":"<p>Information about the integrated development environment (IDE) configured for the Dev Environment. </p>"
1771        },
1772        "instanceType":{
1773          "shape":"InstanceType",
1774          "documentation":"<p>The Amazon EC2 instace type to use for the Dev Environment. </p>"
1775        },
1776        "inactivityTimeoutMinutes":{
1777          "shape":"InactivityTimeoutMinutes",
1778          "documentation":"<p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.</p>"
1779        },
1780        "persistentStorage":{
1781          "shape":"PersistentStorage",
1782          "documentation":"<p>Information about the amount of storage allocated to the Dev Environment. By default, a Dev Environment is configured to have 16GB of persistent storage.</p>"
1783        },
1784        "vpcConnectionName":{
1785          "shape":"NameString",
1786          "documentation":"<p>The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.</p>"
1787        }
1788      }
1789    },
1790    "GetDevEnvironmentResponseAliasString":{
1791      "type":"string",
1792      "max":128,
1793      "min":0
1794    },
1795    "GetDevEnvironmentResponseCreatorIdString":{
1796      "type":"string",
1797      "max":1024,
1798      "min":0
1799    },
1800    "GetProjectRequest":{
1801      "type":"structure",
1802      "required":[
1803        "spaceName",
1804        "name"
1805      ],
1806      "members":{
1807        "spaceName":{
1808          "shape":"NameString",
1809          "documentation":"<p>The name of the space.</p>",
1810          "location":"uri",
1811          "locationName":"spaceName"
1812        },
1813        "name":{
1814          "shape":"NameString",
1815          "documentation":"<p>The name of the project in the space.</p>",
1816          "location":"uri",
1817          "locationName":"name"
1818        }
1819      }
1820    },
1821    "GetProjectResponse":{
1822      "type":"structure",
1823      "required":["name"],
1824      "members":{
1825        "spaceName":{
1826          "shape":"NameString",
1827          "documentation":"<p>The name of the space.</p>"
1828        },
1829        "name":{
1830          "shape":"String",
1831          "documentation":"<p>The name of the project in the space.</p>"
1832        },
1833        "displayName":{
1834          "shape":"String",
1835          "documentation":"<p>The friendly name of the project displayed to users in Amazon CodeCatalyst.</p>"
1836        },
1837        "description":{
1838          "shape":"String",
1839          "documentation":"<p>The description of the project.</p>"
1840        }
1841      }
1842    },
1843    "GetSourceRepositoryCloneUrlsRequest":{
1844      "type":"structure",
1845      "required":[
1846        "spaceName",
1847        "projectName",
1848        "sourceRepositoryName"
1849      ],
1850      "members":{
1851        "spaceName":{
1852          "shape":"NameString",
1853          "documentation":"<p>The name of the space.</p>",
1854          "location":"uri",
1855          "locationName":"spaceName"
1856        },
1857        "projectName":{
1858          "shape":"NameString",
1859          "documentation":"<p>The name of the project in the space.</p>",
1860          "location":"uri",
1861          "locationName":"projectName"
1862        },
1863        "sourceRepositoryName":{
1864          "shape":"SourceRepositoryNameString",
1865          "documentation":"<p>The name of the source repository.</p>",
1866          "location":"uri",
1867          "locationName":"sourceRepositoryName"
1868        }
1869      }
1870    },
1871    "GetSourceRepositoryCloneUrlsResponse":{
1872      "type":"structure",
1873      "required":["https"],
1874      "members":{
1875        "https":{
1876          "shape":"String",
1877          "documentation":"<p>The HTTPS URL to use when cloning the source repository.</p>"
1878        }
1879      }
1880    },
1881    "GetSourceRepositoryRequest":{
1882      "type":"structure",
1883      "required":[
1884        "spaceName",
1885        "projectName",
1886        "name"
1887      ],
1888      "members":{
1889        "spaceName":{
1890          "shape":"NameString",
1891          "documentation":"<p>The name of the space.</p>",
1892          "location":"uri",
1893          "locationName":"spaceName"
1894        },
1895        "projectName":{
1896          "shape":"NameString",
1897          "documentation":"<p>The name of the project in the space.</p>",
1898          "location":"uri",
1899          "locationName":"projectName"
1900        },
1901        "name":{
1902          "shape":"SourceRepositoryNameString",
1903          "documentation":"<p>The name of the source repository.</p>",
1904          "location":"uri",
1905          "locationName":"name"
1906        }
1907      }
1908    },
1909    "GetSourceRepositoryResponse":{
1910      "type":"structure",
1911      "required":[
1912        "spaceName",
1913        "projectName",
1914        "name",
1915        "lastUpdatedTime",
1916        "createdTime"
1917      ],
1918      "members":{
1919        "spaceName":{
1920          "shape":"NameString",
1921          "documentation":"<p>The name of the space.</p>"
1922        },
1923        "projectName":{
1924          "shape":"NameString",
1925          "documentation":"<p>The name of the project in the space.</p>"
1926        },
1927        "name":{
1928          "shape":"SourceRepositoryNameString",
1929          "documentation":"<p>The name of the source repository.</p>"
1930        },
1931        "description":{
1932          "shape":"SourceRepositoryDescriptionString",
1933          "documentation":"<p>The description of the source repository.</p>"
1934        },
1935        "lastUpdatedTime":{
1936          "shape":"Timestamp",
1937          "documentation":"<p>The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
1938        },
1939        "createdTime":{
1940          "shape":"Timestamp",
1941          "documentation":"<p>The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
1942        }
1943      }
1944    },
1945    "GetSpaceRequest":{
1946      "type":"structure",
1947      "required":["name"],
1948      "members":{
1949        "name":{
1950          "shape":"NameString",
1951          "documentation":"<p>The name of the space.</p>",
1952          "location":"uri",
1953          "locationName":"name"
1954        }
1955      }
1956    },
1957    "GetSpaceResponse":{
1958      "type":"structure",
1959      "required":[
1960        "name",
1961        "regionName"
1962      ],
1963      "members":{
1964        "name":{
1965          "shape":"NameString",
1966          "documentation":"<p>The name of the space.</p>"
1967        },
1968        "regionName":{
1969          "shape":"RegionString",
1970          "documentation":"<p>The Amazon Web Services Region where the space exists.</p>"
1971        },
1972        "displayName":{
1973          "shape":"String",
1974          "documentation":"<p>The friendly name of the space displayed to users.</p>"
1975        },
1976        "description":{
1977          "shape":"String",
1978          "documentation":"<p>The description of the space.</p>"
1979        }
1980      }
1981    },
1982    "GetSubscriptionRequest":{
1983      "type":"structure",
1984      "required":["spaceName"],
1985      "members":{
1986        "spaceName":{
1987          "shape":"NameString",
1988          "documentation":"<p>The name of the space.</p>",
1989          "location":"uri",
1990          "locationName":"spaceName"
1991        }
1992      }
1993    },
1994    "GetSubscriptionResponse":{
1995      "type":"structure",
1996      "members":{
1997        "subscriptionType":{
1998          "shape":"String",
1999          "documentation":"<p>The type of the billing plan for the space.</p>"
2000        },
2001        "awsAccountName":{
2002          "shape":"NameString",
2003          "documentation":"<p>The display name of the Amazon Web Services account used for billing for the space.</p>"
2004        }
2005      }
2006    },
2007    "GetUserDetailsRequest":{
2008      "type":"structure",
2009      "members":{
2010        "id":{
2011          "shape":"GetUserDetailsRequestIdString",
2012          "documentation":"<p>The system-generated unique ID of the user. </p>",
2013          "location":"querystring",
2014          "locationName":"id"
2015        },
2016        "userName":{
2017          "shape":"GetUserDetailsRequestUserNameString",
2018          "documentation":"<p>The name of the user as displayed in Amazon CodeCatalyst.</p>",
2019          "location":"querystring",
2020          "locationName":"userName"
2021        }
2022      }
2023    },
2024    "GetUserDetailsRequestIdString":{
2025      "type":"string",
2026      "max":256,
2027      "min":1
2028    },
2029    "GetUserDetailsRequestUserNameString":{
2030      "type":"string",
2031      "max":100,
2032      "min":3,
2033      "pattern":"[a-zA-Z0-9]{3,100}"
2034    },
2035    "GetUserDetailsResponse":{
2036      "type":"structure",
2037      "members":{
2038        "userId":{
2039          "shape":"String",
2040          "documentation":"<p>The system-generated unique ID of the user.</p>"
2041        },
2042        "userName":{
2043          "shape":"String",
2044          "documentation":"<p>The name of the user as displayed in Amazon CodeCatalyst.</p>"
2045        },
2046        "displayName":{
2047          "shape":"String",
2048          "documentation":"<p>The friendly name displayed for the user in Amazon CodeCatalyst.</p>"
2049        },
2050        "primaryEmail":{
2051          "shape":"EmailAddress",
2052          "documentation":"<p>The email address provided by the user when they signed up.</p>"
2053        },
2054        "version":{
2055          "shape":"String",
2056          "documentation":"<p/>"
2057        }
2058      }
2059    },
2060    "GetWorkflowRequest":{
2061      "type":"structure",
2062      "required":[
2063        "spaceName",
2064        "id",
2065        "projectName"
2066      ],
2067      "members":{
2068        "spaceName":{
2069          "shape":"NameString",
2070          "documentation":"<p>The name of the space.</p>",
2071          "location":"uri",
2072          "locationName":"spaceName"
2073        },
2074        "id":{
2075          "shape":"Uuid",
2076          "documentation":"<p>The ID of the workflow. To rerieve a list of workflow IDs, use <a>ListWorkflows</a>.</p>",
2077          "location":"uri",
2078          "locationName":"id"
2079        },
2080        "projectName":{
2081          "shape":"GetWorkflowRequestProjectNameString",
2082          "documentation":"<p>The name of the project in the space.</p>",
2083          "location":"uri",
2084          "locationName":"projectName"
2085        }
2086      }
2087    },
2088    "GetWorkflowRequestProjectNameString":{
2089      "type":"string",
2090      "min":1,
2091      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
2092    },
2093    "GetWorkflowResponse":{
2094      "type":"structure",
2095      "required":[
2096        "spaceName",
2097        "projectName",
2098        "id",
2099        "name",
2100        "definition",
2101        "createdTime",
2102        "lastUpdatedTime",
2103        "runMode",
2104        "status"
2105      ],
2106      "members":{
2107        "spaceName":{
2108          "shape":"NameString",
2109          "documentation":"<p>The name of the space.</p>"
2110        },
2111        "projectName":{
2112          "shape":"NameString",
2113          "documentation":"<p>The name of the project in the space.</p>"
2114        },
2115        "id":{
2116          "shape":"Uuid",
2117          "documentation":"<p>The ID of the workflow.</p>"
2118        },
2119        "name":{
2120          "shape":"String",
2121          "documentation":"<p>The name of the workflow.</p>"
2122        },
2123        "sourceRepositoryName":{
2124          "shape":"SourceRepositoryNameString",
2125          "documentation":"<p>The name of the source repository where the workflow YAML is stored.</p>"
2126        },
2127        "sourceBranchName":{
2128          "shape":"SourceRepositoryBranchString",
2129          "documentation":"<p>The name of the branch that contains the workflow YAML.</p>"
2130        },
2131        "definition":{
2132          "shape":"WorkflowDefinition",
2133          "documentation":"<p>Information about the workflow definition file for the workflow.</p>"
2134        },
2135        "createdTime":{
2136          "shape":"SyntheticTimestamp_date_time",
2137          "documentation":"<p>The date and time the workflow was created, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
2138        },
2139        "lastUpdatedTime":{
2140          "shape":"SyntheticTimestamp_date_time",
2141          "documentation":"<p>The date and time the workflow was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
2142        },
2143        "runMode":{
2144          "shape":"WorkflowRunMode",
2145          "documentation":"<p>The behavior to use when multiple workflows occur at the same time. For more information, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/workflows-configure-runs.html\">https://docs.aws.amazon.com/codecatalyst/latest/userguide/workflows-configure-runs.html</a> in the Amazon CodeCatalyst User Guide.</p>"
2146        },
2147        "status":{
2148          "shape":"WorkflowStatus",
2149          "documentation":"<p>The status of the workflow.</p>"
2150        }
2151      }
2152    },
2153    "GetWorkflowRunRequest":{
2154      "type":"structure",
2155      "required":[
2156        "spaceName",
2157        "id",
2158        "projectName"
2159      ],
2160      "members":{
2161        "spaceName":{
2162          "shape":"NameString",
2163          "documentation":"<p>The name of the space.</p>",
2164          "location":"uri",
2165          "locationName":"spaceName"
2166        },
2167        "id":{
2168          "shape":"Uuid",
2169          "documentation":"<p>The ID of the workflow run. To retrieve a list of workflow run IDs, use <a>ListWorkflowRuns</a>.</p>",
2170          "location":"uri",
2171          "locationName":"id"
2172        },
2173        "projectName":{
2174          "shape":"GetWorkflowRunRequestProjectNameString",
2175          "documentation":"<p>The name of the project in the space.</p>",
2176          "location":"uri",
2177          "locationName":"projectName"
2178        }
2179      }
2180    },
2181    "GetWorkflowRunRequestProjectNameString":{
2182      "type":"string",
2183      "min":1,
2184      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
2185    },
2186    "GetWorkflowRunResponse":{
2187      "type":"structure",
2188      "required":[
2189        "spaceName",
2190        "projectName",
2191        "id",
2192        "workflowId",
2193        "status",
2194        "startTime",
2195        "lastUpdatedTime"
2196      ],
2197      "members":{
2198        "spaceName":{
2199          "shape":"NameString",
2200          "documentation":"<p>The name of the space.</p>"
2201        },
2202        "projectName":{
2203          "shape":"NameString",
2204          "documentation":"<p>The name of the project in the space.</p>"
2205        },
2206        "id":{
2207          "shape":"Uuid",
2208          "documentation":"<p>The ID of the workflow run.</p>"
2209        },
2210        "workflowId":{
2211          "shape":"Uuid",
2212          "documentation":"<p>The ID of the workflow.</p>"
2213        },
2214        "status":{
2215          "shape":"WorkflowRunStatus",
2216          "documentation":"<p>The status of the workflow run.</p>"
2217        },
2218        "statusReasons":{
2219          "shape":"WorkflowRunStatusReasons",
2220          "documentation":"<p>Information about the reasons for the status of the workflow run.</p>"
2221        },
2222        "startTime":{
2223          "shape":"SyntheticTimestamp_date_time",
2224          "documentation":"<p>The date and time the workflow run began, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
2225        },
2226        "endTime":{
2227          "shape":"SyntheticTimestamp_date_time",
2228          "documentation":"<p>The date and time the workflow run ended, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
2229        },
2230        "lastUpdatedTime":{
2231          "shape":"SyntheticTimestamp_date_time",
2232          "documentation":"<p>The date and time the workflow run status was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
2233        }
2234      }
2235    },
2236    "Ide":{
2237      "type":"structure",
2238      "members":{
2239        "runtime":{
2240          "shape":"IdeRuntimeString",
2241          "documentation":"<p>A link to the IDE runtime image.</p>"
2242        },
2243        "name":{
2244          "shape":"IdeNameString",
2245          "documentation":"<p>The name of the IDE.</p>"
2246        }
2247      },
2248      "documentation":"<p>Information about an integrated development environment (IDE) used in a Dev Environment.</p>"
2249    },
2250    "IdeConfiguration":{
2251      "type":"structure",
2252      "members":{
2253        "runtime":{
2254          "shape":"IdeConfigurationRuntimeString",
2255          "documentation":"<p>A link to the IDE runtime image. </p> <note> <p>This parameter is not required for <code>VSCode</code>.</p> </note>"
2256        },
2257        "name":{
2258          "shape":"IdeConfigurationNameString",
2259          "documentation":"<p>The name of the IDE. Valid values include <code>Cloud9</code>, <code>IntelliJ</code>, <code>PyCharm</code>, <code>GoLand</code>, and <code>VSCode</code>.</p>"
2260        }
2261      },
2262      "documentation":"<p>Information about the configuration of an integrated development environment (IDE) for a Dev Environment.</p>"
2263    },
2264    "IdeConfigurationList":{
2265      "type":"list",
2266      "member":{"shape":"IdeConfiguration"},
2267      "max":1,
2268      "min":0
2269    },
2270    "IdeConfigurationNameString":{
2271      "type":"string",
2272      "max":128,
2273      "min":1
2274    },
2275    "IdeConfigurationRuntimeString":{
2276      "type":"string",
2277      "max":400,
2278      "min":1
2279    },
2280    "IdeNameString":{
2281      "type":"string",
2282      "max":128,
2283      "min":1
2284    },
2285    "IdeRuntimeString":{
2286      "type":"string",
2287      "max":400,
2288      "min":1
2289    },
2290    "Ides":{
2291      "type":"list",
2292      "member":{"shape":"Ide"},
2293      "max":1,
2294      "min":0
2295    },
2296    "InactivityTimeoutMinutes":{
2297      "type":"integer",
2298      "max":1200,
2299      "min":0
2300    },
2301    "InstanceType":{
2302      "type":"string",
2303      "enum":[
2304        "dev.standard1.small",
2305        "dev.standard1.medium",
2306        "dev.standard1.large",
2307        "dev.standard1.xlarge"
2308      ]
2309    },
2310    "ListAccessTokensRequest":{
2311      "type":"structure",
2312      "members":{
2313        "maxResults":{
2314          "shape":"ListAccessTokensRequestMaxResultsInteger",
2315          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2316        },
2317        "nextToken":{
2318          "shape":"ListAccessTokensRequestNextTokenString",
2319          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2320        }
2321      }
2322    },
2323    "ListAccessTokensRequestMaxResultsInteger":{
2324      "type":"integer",
2325      "box":true,
2326      "max":10
2327    },
2328    "ListAccessTokensRequestNextTokenString":{
2329      "type":"string",
2330      "max":10000,
2331      "min":1
2332    },
2333    "ListAccessTokensResponse":{
2334      "type":"structure",
2335      "required":["items"],
2336      "members":{
2337        "items":{
2338          "shape":"AccessTokenSummaries",
2339          "documentation":"<p>A list of personal access tokens (PATs) associated with the calling user identity.</p>"
2340        },
2341        "nextToken":{
2342          "shape":"String",
2343          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2344        }
2345      }
2346    },
2347    "ListDevEnvironmentSessionsRequest":{
2348      "type":"structure",
2349      "required":[
2350        "spaceName",
2351        "projectName",
2352        "devEnvironmentId"
2353      ],
2354      "members":{
2355        "spaceName":{
2356          "shape":"NameString",
2357          "documentation":"<p>The name of the space.</p>",
2358          "location":"uri",
2359          "locationName":"spaceName"
2360        },
2361        "projectName":{
2362          "shape":"NameString",
2363          "documentation":"<p>The name of the project in the space.</p>",
2364          "location":"uri",
2365          "locationName":"projectName"
2366        },
2367        "devEnvironmentId":{
2368          "shape":"Uuid",
2369          "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>",
2370          "location":"uri",
2371          "locationName":"devEnvironmentId"
2372        },
2373        "nextToken":{
2374          "shape":"ListDevEnvironmentSessionsRequestNextTokenString",
2375          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2376        },
2377        "maxResults":{
2378          "shape":"ListDevEnvironmentSessionsRequestMaxResultsInteger",
2379          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2380        }
2381      }
2382    },
2383    "ListDevEnvironmentSessionsRequestMaxResultsInteger":{
2384      "type":"integer",
2385      "box":true,
2386      "max":200,
2387      "min":1
2388    },
2389    "ListDevEnvironmentSessionsRequestNextTokenString":{
2390      "type":"string",
2391      "max":10000,
2392      "min":1
2393    },
2394    "ListDevEnvironmentSessionsResponse":{
2395      "type":"structure",
2396      "required":["items"],
2397      "members":{
2398        "items":{
2399          "shape":"DevEnvironmentSessionsSummaryList",
2400          "documentation":"<p>Information about each session retrieved in the list.</p>"
2401        },
2402        "nextToken":{
2403          "shape":"String",
2404          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2405        }
2406      }
2407    },
2408    "ListDevEnvironmentsRequest":{
2409      "type":"structure",
2410      "required":["spaceName"],
2411      "members":{
2412        "spaceName":{
2413          "shape":"NameString",
2414          "documentation":"<p>The name of the space.</p>",
2415          "location":"uri",
2416          "locationName":"spaceName"
2417        },
2418        "projectName":{
2419          "shape":"NameString",
2420          "documentation":"<p>The name of the project in the space.</p>"
2421        },
2422        "filters":{
2423          "shape":"Filters",
2424          "documentation":"<p>Information about filters to apply to narrow the results returned in the list.</p>"
2425        },
2426        "nextToken":{
2427          "shape":"ListDevEnvironmentsRequestNextTokenString",
2428          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2429        },
2430        "maxResults":{
2431          "shape":"ListDevEnvironmentsRequestMaxResultsInteger",
2432          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2433        }
2434      }
2435    },
2436    "ListDevEnvironmentsRequestMaxResultsInteger":{
2437      "type":"integer",
2438      "box":true,
2439      "max":50,
2440      "min":1
2441    },
2442    "ListDevEnvironmentsRequestNextTokenString":{
2443      "type":"string",
2444      "max":10000,
2445      "min":1
2446    },
2447    "ListDevEnvironmentsResponse":{
2448      "type":"structure",
2449      "required":["items"],
2450      "members":{
2451        "items":{
2452          "shape":"DevEnvironmentSummaryList",
2453          "documentation":"<p>Information about the Dev Environments in a project.</p>"
2454        },
2455        "nextToken":{
2456          "shape":"String",
2457          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2458        }
2459      }
2460    },
2461    "ListEventLogsRequest":{
2462      "type":"structure",
2463      "required":[
2464        "spaceName",
2465        "startTime",
2466        "endTime"
2467      ],
2468      "members":{
2469        "spaceName":{
2470          "shape":"NameString",
2471          "documentation":"<p>The name of the space.</p>",
2472          "location":"uri",
2473          "locationName":"spaceName"
2474        },
2475        "startTime":{
2476          "shape":"SyntheticTimestamp_date_time",
2477          "documentation":"<p>The date and time when you want to start retrieving events, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
2478        },
2479        "endTime":{
2480          "shape":"SyntheticTimestamp_date_time",
2481          "documentation":"<p>The time after which you do not want any events retrieved, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
2482        },
2483        "eventName":{
2484          "shape":"String",
2485          "documentation":"<p>The name of the event.</p>"
2486        },
2487        "nextToken":{
2488          "shape":"ListEventLogsRequestNextTokenString",
2489          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2490        },
2491        "maxResults":{
2492          "shape":"ListEventLogsRequestMaxResultsInteger",
2493          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2494        }
2495      }
2496    },
2497    "ListEventLogsRequestMaxResultsInteger":{
2498      "type":"integer",
2499      "box":true,
2500      "max":250,
2501      "min":1
2502    },
2503    "ListEventLogsRequestNextTokenString":{
2504      "type":"string",
2505      "max":10000,
2506      "min":1
2507    },
2508    "ListEventLogsResponse":{
2509      "type":"structure",
2510      "required":["items"],
2511      "members":{
2512        "nextToken":{
2513          "shape":"String",
2514          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2515        },
2516        "items":{
2517          "shape":"EventLogEntries",
2518          "documentation":"<p>Information about each event retrieved in the list.</p>"
2519        }
2520      }
2521    },
2522    "ListProjectsRequest":{
2523      "type":"structure",
2524      "required":["spaceName"],
2525      "members":{
2526        "spaceName":{
2527          "shape":"NameString",
2528          "documentation":"<p>The name of the space.</p>",
2529          "location":"uri",
2530          "locationName":"spaceName"
2531        },
2532        "nextToken":{
2533          "shape":"ListProjectsRequestNextTokenString",
2534          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2535        },
2536        "maxResults":{
2537          "shape":"ListProjectsRequestMaxResultsInteger",
2538          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2539        },
2540        "filters":{
2541          "shape":"ProjectListFilters",
2542          "documentation":"<p>Information about filters to apply to narrow the results returned in the list.</p>"
2543        }
2544      }
2545    },
2546    "ListProjectsRequestMaxResultsInteger":{
2547      "type":"integer",
2548      "box":true,
2549      "max":100,
2550      "min":1
2551    },
2552    "ListProjectsRequestNextTokenString":{
2553      "type":"string",
2554      "max":10000,
2555      "min":1
2556    },
2557    "ListProjectsResponse":{
2558      "type":"structure",
2559      "members":{
2560        "nextToken":{
2561          "shape":"String",
2562          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2563        },
2564        "items":{
2565          "shape":"ProjectSummaries",
2566          "documentation":"<p>Information about the projects.</p>"
2567        }
2568      }
2569    },
2570    "ListSourceRepositoriesItem":{
2571      "type":"structure",
2572      "required":[
2573        "id",
2574        "name",
2575        "lastUpdatedTime",
2576        "createdTime"
2577      ],
2578      "members":{
2579        "id":{
2580          "shape":"SourceRepositoryIdString",
2581          "documentation":"<p>The system-generated unique ID of the source repository.</p>"
2582        },
2583        "name":{
2584          "shape":"SourceRepositoryNameString",
2585          "documentation":"<p>The name of the source repository.</p>"
2586        },
2587        "description":{
2588          "shape":"SourceRepositoryDescriptionString",
2589          "documentation":"<p>The description of the repository, if any.</p>"
2590        },
2591        "lastUpdatedTime":{
2592          "shape":"Timestamp",
2593          "documentation":"<p>The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
2594        },
2595        "createdTime":{
2596          "shape":"Timestamp",
2597          "documentation":"<p>The time the source repository was created, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
2598        }
2599      },
2600      "documentation":"<p>Information about a source repository returned in a list of source repositories.</p>"
2601    },
2602    "ListSourceRepositoriesItems":{
2603      "type":"list",
2604      "member":{"shape":"ListSourceRepositoriesItem"}
2605    },
2606    "ListSourceRepositoriesRequest":{
2607      "type":"structure",
2608      "required":[
2609        "spaceName",
2610        "projectName"
2611      ],
2612      "members":{
2613        "spaceName":{
2614          "shape":"NameString",
2615          "documentation":"<p>The name of the space.</p>",
2616          "location":"uri",
2617          "locationName":"spaceName"
2618        },
2619        "projectName":{
2620          "shape":"NameString",
2621          "documentation":"<p>The name of the project in the space.</p>",
2622          "location":"uri",
2623          "locationName":"projectName"
2624        },
2625        "nextToken":{
2626          "shape":"ListSourceRepositoriesRequestNextTokenString",
2627          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2628        },
2629        "maxResults":{
2630          "shape":"ListSourceRepositoriesRequestMaxResultsInteger",
2631          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2632        }
2633      }
2634    },
2635    "ListSourceRepositoriesRequestMaxResultsInteger":{
2636      "type":"integer",
2637      "box":true,
2638      "max":200,
2639      "min":1
2640    },
2641    "ListSourceRepositoriesRequestNextTokenString":{
2642      "type":"string",
2643      "max":10000,
2644      "min":1
2645    },
2646    "ListSourceRepositoriesResponse":{
2647      "type":"structure",
2648      "members":{
2649        "items":{
2650          "shape":"ListSourceRepositoriesItems",
2651          "documentation":"<p>Information about the source repositories.</p>"
2652        },
2653        "nextToken":{
2654          "shape":"String",
2655          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2656        }
2657      }
2658    },
2659    "ListSourceRepositoryBranchesItem":{
2660      "type":"structure",
2661      "members":{
2662        "ref":{
2663          "shape":"SourceRepositoryBranchRefString",
2664          "documentation":"<p>The Git reference name of the branch.</p>"
2665        },
2666        "name":{
2667          "shape":"SourceRepositoryBranchString",
2668          "documentation":"<p>The name of the branch.</p>"
2669        },
2670        "lastUpdatedTime":{
2671          "shape":"SyntheticTimestamp_date_time",
2672          "documentation":"<p>The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
2673        },
2674        "headCommitId":{
2675          "shape":"String",
2676          "documentation":"<p>The commit ID of the tip of the branch at the time of the request, also known as the head commit.</p>"
2677        }
2678      },
2679      "documentation":"<p>Information about a branch of a source repository returned in a list of branches.</p>"
2680    },
2681    "ListSourceRepositoryBranchesItems":{
2682      "type":"list",
2683      "member":{"shape":"ListSourceRepositoryBranchesItem"}
2684    },
2685    "ListSourceRepositoryBranchesRequest":{
2686      "type":"structure",
2687      "required":[
2688        "spaceName",
2689        "projectName",
2690        "sourceRepositoryName"
2691      ],
2692      "members":{
2693        "spaceName":{
2694          "shape":"NameString",
2695          "documentation":"<p>The name of the space.</p>",
2696          "location":"uri",
2697          "locationName":"spaceName"
2698        },
2699        "projectName":{
2700          "shape":"NameString",
2701          "documentation":"<p>The name of the project in the space.</p>",
2702          "location":"uri",
2703          "locationName":"projectName"
2704        },
2705        "sourceRepositoryName":{
2706          "shape":"SourceRepositoryNameString",
2707          "documentation":"<p>The name of the source repository.</p>",
2708          "location":"uri",
2709          "locationName":"sourceRepositoryName"
2710        },
2711        "nextToken":{
2712          "shape":"ListSourceRepositoryBranchesRequestNextTokenString",
2713          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2714        },
2715        "maxResults":{
2716          "shape":"ListSourceRepositoryBranchesRequestMaxResultsInteger",
2717          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>"
2718        }
2719      }
2720    },
2721    "ListSourceRepositoryBranchesRequestMaxResultsInteger":{
2722      "type":"integer",
2723      "box":true,
2724      "max":50,
2725      "min":1
2726    },
2727    "ListSourceRepositoryBranchesRequestNextTokenString":{
2728      "type":"string",
2729      "max":10000,
2730      "min":1
2731    },
2732    "ListSourceRepositoryBranchesResponse":{
2733      "type":"structure",
2734      "required":["items"],
2735      "members":{
2736        "nextToken":{
2737          "shape":"String",
2738          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2739        },
2740        "items":{
2741          "shape":"ListSourceRepositoryBranchesItems",
2742          "documentation":"<p>Information about the source branches.</p>"
2743        }
2744      }
2745    },
2746    "ListSpacesRequest":{
2747      "type":"structure",
2748      "members":{
2749        "nextToken":{
2750          "shape":"ListSpacesRequestNextTokenString",
2751          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2752        }
2753      }
2754    },
2755    "ListSpacesRequestNextTokenString":{
2756      "type":"string",
2757      "max":10000,
2758      "min":1
2759    },
2760    "ListSpacesResponse":{
2761      "type":"structure",
2762      "members":{
2763        "nextToken":{
2764          "shape":"String",
2765          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2766        },
2767        "items":{
2768          "shape":"SpaceSummaries",
2769          "documentation":"<p>Information about the spaces. </p>"
2770        }
2771      }
2772    },
2773    "ListWorkflowRunsRequest":{
2774      "type":"structure",
2775      "required":[
2776        "spaceName",
2777        "projectName"
2778      ],
2779      "members":{
2780        "spaceName":{
2781          "shape":"NameString",
2782          "documentation":"<p>The name of the space.</p>",
2783          "location":"uri",
2784          "locationName":"spaceName"
2785        },
2786        "workflowId":{
2787          "shape":"Uuid",
2788          "documentation":"<p>The ID of the workflow. To retrieve a list of workflow IDs, use <a>ListWorkflows</a>.</p>",
2789          "location":"querystring",
2790          "locationName":"workflowId"
2791        },
2792        "projectName":{
2793          "shape":"ListWorkflowRunsRequestProjectNameString",
2794          "documentation":"<p>The name of the project in the space.</p>",
2795          "location":"uri",
2796          "locationName":"projectName"
2797        },
2798        "nextToken":{
2799          "shape":"ListWorkflowRunsRequestNextTokenString",
2800          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>",
2801          "location":"querystring",
2802          "locationName":"nextToken"
2803        },
2804        "maxResults":{
2805          "shape":"ListWorkflowRunsRequestMaxResultsInteger",
2806          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>",
2807          "location":"querystring",
2808          "locationName":"maxResults"
2809        },
2810        "sortBy":{
2811          "shape":"WorkflowRunSortCriteriaList",
2812          "documentation":"<p>Information used to sort the items in the returned list.</p>"
2813        }
2814      }
2815    },
2816    "ListWorkflowRunsRequestMaxResultsInteger":{
2817      "type":"integer",
2818      "box":true,
2819      "max":50,
2820      "min":1
2821    },
2822    "ListWorkflowRunsRequestNextTokenString":{
2823      "type":"string",
2824      "max":2048,
2825      "min":1
2826    },
2827    "ListWorkflowRunsRequestProjectNameString":{
2828      "type":"string",
2829      "min":1,
2830      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
2831    },
2832    "ListWorkflowRunsResponse":{
2833      "type":"structure",
2834      "members":{
2835        "nextToken":{
2836          "shape":"String",
2837          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2838        },
2839        "items":{
2840          "shape":"WorkflowRunSummaries",
2841          "documentation":"<p>Information about the runs of a workflow.</p>"
2842        }
2843      }
2844    },
2845    "ListWorkflowsRequest":{
2846      "type":"structure",
2847      "required":[
2848        "spaceName",
2849        "projectName"
2850      ],
2851      "members":{
2852        "spaceName":{
2853          "shape":"ListWorkflowsRequestSpaceNameString",
2854          "documentation":"<p>The name of the space.</p>",
2855          "location":"uri",
2856          "locationName":"spaceName"
2857        },
2858        "projectName":{
2859          "shape":"NameString",
2860          "documentation":"<p>The name of the project in the space.</p>",
2861          "location":"uri",
2862          "locationName":"projectName"
2863        },
2864        "nextToken":{
2865          "shape":"ListWorkflowsRequestNextTokenString",
2866          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>",
2867          "location":"querystring",
2868          "locationName":"nextToken"
2869        },
2870        "maxResults":{
2871          "shape":"ListWorkflowsRequestMaxResultsInteger",
2872          "documentation":"<p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>",
2873          "location":"querystring",
2874          "locationName":"maxResults"
2875        },
2876        "sortBy":{
2877          "shape":"WorkflowSortCriteriaList",
2878          "documentation":"<p>Information used to sort the items in the returned list.</p>"
2879        }
2880      }
2881    },
2882    "ListWorkflowsRequestMaxResultsInteger":{
2883      "type":"integer",
2884      "box":true,
2885      "max":100,
2886      "min":1
2887    },
2888    "ListWorkflowsRequestNextTokenString":{
2889      "type":"string",
2890      "max":2048,
2891      "min":1
2892    },
2893    "ListWorkflowsRequestSpaceNameString":{
2894      "type":"string",
2895      "min":1,
2896      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
2897    },
2898    "ListWorkflowsResponse":{
2899      "type":"structure",
2900      "members":{
2901        "nextToken":{
2902          "shape":"String",
2903          "documentation":"<p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>"
2904        },
2905        "items":{
2906          "shape":"WorkflowSummaries",
2907          "documentation":"<p>Information about the workflows in a project.</p>"
2908        }
2909      }
2910    },
2911    "NameString":{
2912      "type":"string",
2913      "max":63,
2914      "min":3,
2915      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
2916    },
2917    "OperationType":{
2918      "type":"string",
2919      "enum":[
2920        "READONLY",
2921        "MUTATION"
2922      ]
2923    },
2924    "PersistentStorage":{
2925      "type":"structure",
2926      "required":["sizeInGiB"],
2927      "members":{
2928        "sizeInGiB":{
2929          "shape":"PersistentStorageSizeInGiBInteger",
2930          "documentation":"<p>The size of the persistent storage in gigabytes (specifically GiB).</p> <note> <p>Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.</p> </note>"
2931        }
2932      },
2933      "documentation":"<p>Information about the persistent storage for a Dev Environment.</p>"
2934    },
2935    "PersistentStorageConfiguration":{
2936      "type":"structure",
2937      "required":["sizeInGiB"],
2938      "members":{
2939        "sizeInGiB":{
2940          "shape":"PersistentStorageConfigurationSizeInGiBInteger",
2941          "documentation":"<p>The size of the persistent storage in gigabytes (specifically GiB).</p> <note> <p>Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.</p> </note>"
2942        }
2943      },
2944      "documentation":"<p>Information about the configuration of persistent storage for a Dev Environment. </p>"
2945    },
2946    "PersistentStorageConfigurationSizeInGiBInteger":{
2947      "type":"integer",
2948      "box":true,
2949      "max":64,
2950      "min":0
2951    },
2952    "PersistentStorageSizeInGiBInteger":{
2953      "type":"integer",
2954      "box":true,
2955      "max":64,
2956      "min":0
2957    },
2958    "ProjectDescription":{
2959      "type":"string",
2960      "max":200,
2961      "min":0,
2962      "pattern":"[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\\+=?&$%    ])*"
2963    },
2964    "ProjectDisplayName":{
2965      "type":"string",
2966      "max":63,
2967      "min":3,
2968      "pattern":"[a-zA-Z0-9]+(?:[-_\\. ][a-zA-Z0-9]+)*"
2969    },
2970    "ProjectInformation":{
2971      "type":"structure",
2972      "members":{
2973        "name":{
2974          "shape":"String",
2975          "documentation":"<p>The name of the project in the space.</p>"
2976        },
2977        "projectId":{
2978          "shape":"String",
2979          "documentation":"<p>The system-generated unique ID of the project.</p>"
2980        }
2981      },
2982      "documentation":"<p>Information about a project in a space.</p>"
2983    },
2984    "ProjectListFilter":{
2985      "type":"structure",
2986      "required":[
2987        "key",
2988        "values"
2989      ],
2990      "members":{
2991        "key":{
2992          "shape":"FilterKey",
2993          "documentation":"<p>A key that can be used to sort results.</p>"
2994        },
2995        "values":{
2996          "shape":"StringList",
2997          "documentation":"<p>The values of the key.</p>"
2998        },
2999        "comparisonOperator":{
3000          "shape":"ComparisonOperator",
3001          "documentation":"<p>The operator used to compare the fields.</p>"
3002        }
3003      },
3004      "documentation":"<p>nformation about the filter used to narrow the results returned in a list of projects.</p>"
3005    },
3006    "ProjectListFilters":{
3007      "type":"list",
3008      "member":{"shape":"ProjectListFilter"}
3009    },
3010    "ProjectSummaries":{
3011      "type":"list",
3012      "member":{"shape":"ProjectSummary"}
3013    },
3014    "ProjectSummary":{
3015      "type":"structure",
3016      "required":["name"],
3017      "members":{
3018        "name":{
3019          "shape":"String",
3020          "documentation":"<p>The name of the project in the space.</p>"
3021        },
3022        "displayName":{
3023          "shape":"String",
3024          "documentation":"<p>The friendly name displayed to users of the project in Amazon CodeCatalyst.</p>"
3025        },
3026        "description":{
3027          "shape":"String",
3028          "documentation":"<p>The description of the project.</p>"
3029        }
3030      },
3031      "documentation":"<p>Information about a project.</p>"
3032    },
3033    "RegionString":{
3034      "type":"string",
3035      "max":16,
3036      "min":3,
3037      "pattern":"(us(?:-gov)?|af|ap|ca|cn|eu|sa)-(central|(?:north|south)?(?:east|west)?)-(\\d+)"
3038    },
3039    "RepositoriesInput":{
3040      "type":"list",
3041      "member":{"shape":"RepositoryInput"}
3042    },
3043    "RepositoryInput":{
3044      "type":"structure",
3045      "required":["repositoryName"],
3046      "members":{
3047        "repositoryName":{
3048          "shape":"SourceRepositoryNameString",
3049          "documentation":"<p>The name of the source repository.</p>"
3050        },
3051        "branchName":{
3052          "shape":"SourceRepositoryBranchString",
3053          "documentation":"<p>The name of the branch in a source repository.</p>"
3054        }
3055      },
3056      "documentation":"<p>Information about a repository that will be cloned to a Dev Environment.</p>"
3057    },
3058    "ResourceNotFoundException":{
3059      "type":"structure",
3060      "required":["message"],
3061      "members":{
3062        "message":{"shape":"String"}
3063      },
3064      "documentation":"<p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>",
3065      "error":{
3066        "httpStatusCode":404,
3067        "senderFault":true
3068      },
3069      "exception":true
3070    },
3071    "SensitiveString":{
3072      "type":"string",
3073      "sensitive":true
3074    },
3075    "ServiceQuotaExceededException":{
3076      "type":"structure",
3077      "required":["message"],
3078      "members":{
3079        "message":{"shape":"String"}
3080      },
3081      "documentation":"<p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce the number of resources, or change the tier if applicable.</p>",
3082      "error":{
3083        "httpStatusCode":402,
3084        "senderFault":true
3085      },
3086      "exception":true
3087    },
3088    "SourceRepositoryBranchRefString":{
3089      "type":"string",
3090      "max":255,
3091      "min":1
3092    },
3093    "SourceRepositoryBranchString":{
3094      "type":"string",
3095      "max":100,
3096      "min":1
3097    },
3098    "SourceRepositoryDescriptionString":{
3099      "type":"string",
3100      "max":255,
3101      "min":1
3102    },
3103    "SourceRepositoryIdString":{
3104      "type":"string",
3105      "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
3106    },
3107    "SourceRepositoryNameString":{
3108      "type":"string",
3109      "max":100,
3110      "min":1,
3111      "pattern":"(?!.*[.]git$)[\\w\\-.]*"
3112    },
3113    "SpaceDescription":{
3114      "type":"string",
3115      "max":200,
3116      "min":0,
3117      "pattern":"[a-zA-Z0-9]+(?:[-_a-zA-Z0-9.,;:/\\+=?&$%    ])*"
3118    },
3119    "SpaceSummaries":{
3120      "type":"list",
3121      "member":{"shape":"SpaceSummary"}
3122    },
3123    "SpaceSummary":{
3124      "type":"structure",
3125      "required":[
3126        "name",
3127        "regionName"
3128      ],
3129      "members":{
3130        "name":{
3131          "shape":"NameString",
3132          "documentation":"<p>The name of the space.</p>"
3133        },
3134        "regionName":{
3135          "shape":"RegionString",
3136          "documentation":"<p>The Amazon Web Services Region where the space exists.</p>"
3137        },
3138        "displayName":{
3139          "shape":"String",
3140          "documentation":"<p>The friendly name of the space displayed to users.</p>"
3141        },
3142        "description":{
3143          "shape":"String",
3144          "documentation":"<p>The description of the space.</p>"
3145        }
3146      },
3147      "documentation":"<p>Information about an space.</p>"
3148    },
3149    "StartDevEnvironmentRequest":{
3150      "type":"structure",
3151      "required":[
3152        "spaceName",
3153        "projectName",
3154        "id"
3155      ],
3156      "members":{
3157        "spaceName":{
3158          "shape":"NameString",
3159          "documentation":"<p>The name of the space.</p>",
3160          "location":"uri",
3161          "locationName":"spaceName"
3162        },
3163        "projectName":{
3164          "shape":"NameString",
3165          "documentation":"<p>The name of the project in the space.</p>",
3166          "location":"uri",
3167          "locationName":"projectName"
3168        },
3169        "id":{
3170          "shape":"Uuid",
3171          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>",
3172          "location":"uri",
3173          "locationName":"id"
3174        },
3175        "ides":{
3176          "shape":"IdeConfigurationList",
3177          "documentation":"<p>Information about the integrated development environment (IDE) configured for a Dev Environment. </p>"
3178        },
3179        "instanceType":{
3180          "shape":"InstanceType",
3181          "documentation":"<p>The Amazon EC2 instace type to use for the Dev Environment. </p>"
3182        },
3183        "inactivityTimeoutMinutes":{
3184          "shape":"InactivityTimeoutMinutes",
3185          "documentation":"<p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.</p>"
3186        }
3187      }
3188    },
3189    "StartDevEnvironmentResponse":{
3190      "type":"structure",
3191      "required":[
3192        "spaceName",
3193        "projectName",
3194        "id",
3195        "status"
3196      ],
3197      "members":{
3198        "spaceName":{
3199          "shape":"NameString",
3200          "documentation":"<p>The name of the space.</p>"
3201        },
3202        "projectName":{
3203          "shape":"NameString",
3204          "documentation":"<p>The name of the project in the space.</p>"
3205        },
3206        "id":{
3207          "shape":"Uuid",
3208          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>"
3209        },
3210        "status":{
3211          "shape":"DevEnvironmentStatus",
3212          "documentation":"<p>The status of the Dev Environment. </p>"
3213        }
3214      }
3215    },
3216    "StartDevEnvironmentSessionRequest":{
3217      "type":"structure",
3218      "required":[
3219        "spaceName",
3220        "projectName",
3221        "id",
3222        "sessionConfiguration"
3223      ],
3224      "members":{
3225        "spaceName":{
3226          "shape":"NameString",
3227          "documentation":"<p>The name of the space.</p>",
3228          "location":"uri",
3229          "locationName":"spaceName"
3230        },
3231        "projectName":{
3232          "shape":"NameString",
3233          "documentation":"<p>The name of the project in the space.</p>",
3234          "location":"uri",
3235          "locationName":"projectName"
3236        },
3237        "id":{
3238          "shape":"Uuid",
3239          "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>",
3240          "location":"uri",
3241          "locationName":"id"
3242        },
3243        "sessionConfiguration":{"shape":"DevEnvironmentSessionConfiguration"}
3244      }
3245    },
3246    "StartDevEnvironmentSessionResponse":{
3247      "type":"structure",
3248      "required":[
3249        "accessDetails",
3250        "spaceName",
3251        "projectName",
3252        "id"
3253      ],
3254      "members":{
3255        "accessDetails":{"shape":"DevEnvironmentAccessDetails"},
3256        "sessionId":{
3257          "shape":"StartDevEnvironmentSessionResponseSessionIdString",
3258          "documentation":"<p>The system-generated unique ID of the Dev Environment session.</p>"
3259        },
3260        "spaceName":{
3261          "shape":"NameString",
3262          "documentation":"<p>The name of the space.</p>"
3263        },
3264        "projectName":{
3265          "shape":"NameString",
3266          "documentation":"<p>The name of the project in the space.</p>"
3267        },
3268        "id":{
3269          "shape":"Uuid",
3270          "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>"
3271        }
3272      }
3273    },
3274    "StartDevEnvironmentSessionResponseSessionIdString":{
3275      "type":"string",
3276      "max":96,
3277      "min":1
3278    },
3279    "StartWorkflowRunRequest":{
3280      "type":"structure",
3281      "required":[
3282        "spaceName",
3283        "projectName",
3284        "workflowId"
3285      ],
3286      "members":{
3287        "spaceName":{
3288          "shape":"StartWorkflowRunRequestSpaceNameString",
3289          "documentation":"<p>The name of the space.</p>",
3290          "location":"uri",
3291          "locationName":"spaceName"
3292        },
3293        "projectName":{
3294          "shape":"StartWorkflowRunRequestProjectNameString",
3295          "documentation":"<p>The name of the project in the space.</p>",
3296          "location":"uri",
3297          "locationName":"projectName"
3298        },
3299        "workflowId":{
3300          "shape":"Uuid",
3301          "documentation":"<p>The system-generated unique ID of the workflow. To retrieve a list of workflow IDs, use <a>ListWorkflows</a>.</p>",
3302          "location":"querystring",
3303          "locationName":"workflowId"
3304        },
3305        "clientToken":{
3306          "shape":"StartWorkflowRunRequestClientTokenString",
3307          "documentation":"<p>A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>",
3308          "idempotencyToken":true
3309        }
3310      }
3311    },
3312    "StartWorkflowRunRequestClientTokenString":{
3313      "type":"string",
3314      "max":64,
3315      "min":1,
3316      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
3317    },
3318    "StartWorkflowRunRequestProjectNameString":{
3319      "type":"string",
3320      "min":1,
3321      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
3322    },
3323    "StartWorkflowRunRequestSpaceNameString":{
3324      "type":"string",
3325      "min":1,
3326      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
3327    },
3328    "StartWorkflowRunResponse":{
3329      "type":"structure",
3330      "required":[
3331        "spaceName",
3332        "projectName",
3333        "id",
3334        "workflowId"
3335      ],
3336      "members":{
3337        "spaceName":{
3338          "shape":"NameString",
3339          "documentation":"<p>The name of the space.</p>"
3340        },
3341        "projectName":{
3342          "shape":"NameString",
3343          "documentation":"<p>The name of the project in the space.</p>"
3344        },
3345        "id":{
3346          "shape":"Uuid",
3347          "documentation":"<p>The system-generated unique ID of the workflow run.</p>"
3348        },
3349        "workflowId":{
3350          "shape":"Uuid",
3351          "documentation":"<p>The system-generated unique ID of the workflow.</p>"
3352        }
3353      }
3354    },
3355    "StatusReason":{
3356      "type":"string",
3357      "max":1024,
3358      "min":0
3359    },
3360    "StopDevEnvironmentRequest":{
3361      "type":"structure",
3362      "required":[
3363        "spaceName",
3364        "projectName",
3365        "id"
3366      ],
3367      "members":{
3368        "spaceName":{
3369          "shape":"NameString",
3370          "documentation":"<p>The name of the space.</p>",
3371          "location":"uri",
3372          "locationName":"spaceName"
3373        },
3374        "projectName":{
3375          "shape":"NameString",
3376          "documentation":"<p>The name of the project in the space.</p>",
3377          "location":"uri",
3378          "locationName":"projectName"
3379        },
3380        "id":{
3381          "shape":"Uuid",
3382          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>",
3383          "location":"uri",
3384          "locationName":"id"
3385        }
3386      }
3387    },
3388    "StopDevEnvironmentResponse":{
3389      "type":"structure",
3390      "required":[
3391        "spaceName",
3392        "projectName",
3393        "id",
3394        "status"
3395      ],
3396      "members":{
3397        "spaceName":{
3398          "shape":"NameString",
3399          "documentation":"<p>The name of the space.</p>"
3400        },
3401        "projectName":{
3402          "shape":"NameString",
3403          "documentation":"<p>The name of the project in the space.</p>"
3404        },
3405        "id":{
3406          "shape":"Uuid",
3407          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>"
3408        },
3409        "status":{
3410          "shape":"DevEnvironmentStatus",
3411          "documentation":"<p>The status of the Dev Environment. </p>"
3412        }
3413      }
3414    },
3415    "StopDevEnvironmentSessionRequest":{
3416      "type":"structure",
3417      "required":[
3418        "spaceName",
3419        "projectName",
3420        "id",
3421        "sessionId"
3422      ],
3423      "members":{
3424        "spaceName":{
3425          "shape":"NameString",
3426          "documentation":"<p>The name of the space.</p>",
3427          "location":"uri",
3428          "locationName":"spaceName"
3429        },
3430        "projectName":{
3431          "shape":"NameString",
3432          "documentation":"<p>The name of the project in the space.</p>",
3433          "location":"uri",
3434          "locationName":"projectName"
3435        },
3436        "id":{
3437          "shape":"Uuid",
3438          "documentation":"<p>The system-generated unique ID of the Dev Environment. To obtain this ID, use <a>ListDevEnvironments</a>.</p>",
3439          "location":"uri",
3440          "locationName":"id"
3441        },
3442        "sessionId":{
3443          "shape":"StopDevEnvironmentSessionRequestSessionIdString",
3444          "documentation":"<p>The system-generated unique ID of the Dev Environment session. This ID is returned by <a>StartDevEnvironmentSession</a>.</p>",
3445          "location":"uri",
3446          "locationName":"sessionId"
3447        }
3448      }
3449    },
3450    "StopDevEnvironmentSessionRequestSessionIdString":{
3451      "type":"string",
3452      "max":96,
3453      "min":1
3454    },
3455    "StopDevEnvironmentSessionResponse":{
3456      "type":"structure",
3457      "required":[
3458        "spaceName",
3459        "projectName",
3460        "id",
3461        "sessionId"
3462      ],
3463      "members":{
3464        "spaceName":{
3465          "shape":"NameString",
3466          "documentation":"<p>The name of the space.</p>"
3467        },
3468        "projectName":{
3469          "shape":"NameString",
3470          "documentation":"<p>The name of the project in the space.</p>"
3471        },
3472        "id":{
3473          "shape":"Uuid",
3474          "documentation":"<p>The system-generated unique ID of the Dev Environment.</p>"
3475        },
3476        "sessionId":{
3477          "shape":"StopDevEnvironmentSessionResponseSessionIdString",
3478          "documentation":"<p>The system-generated unique ID of the Dev Environment session.</p>"
3479        }
3480      }
3481    },
3482    "StopDevEnvironmentSessionResponseSessionIdString":{
3483      "type":"string",
3484      "max":96,
3485      "min":1
3486    },
3487    "String":{"type":"string"},
3488    "StringList":{
3489      "type":"list",
3490      "member":{"shape":"String"}
3491    },
3492    "SyntheticTimestamp_date_time":{
3493      "type":"timestamp",
3494      "timestampFormat":"iso8601"
3495    },
3496    "ThrottlingException":{
3497      "type":"structure",
3498      "required":["message"],
3499      "members":{
3500        "message":{"shape":"String"}
3501      },
3502      "documentation":"<p>The request was denied due to request throttling.</p>",
3503      "error":{
3504        "httpStatusCode":429,
3505        "senderFault":true
3506      },
3507      "exception":true,
3508      "retryable":{"throttling":false}
3509    },
3510    "Timestamp":{
3511      "type":"timestamp",
3512      "timestampFormat":"iso8601"
3513    },
3514    "UpdateDevEnvironmentRequest":{
3515      "type":"structure",
3516      "required":[
3517        "spaceName",
3518        "projectName",
3519        "id"
3520      ],
3521      "members":{
3522        "spaceName":{
3523          "shape":"NameString",
3524          "documentation":"<p>The name of the space.</p>",
3525          "location":"uri",
3526          "locationName":"spaceName"
3527        },
3528        "projectName":{
3529          "shape":"NameString",
3530          "documentation":"<p>The name of the project in the space.</p>",
3531          "location":"uri",
3532          "locationName":"projectName"
3533        },
3534        "id":{
3535          "shape":"Uuid",
3536          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>",
3537          "location":"uri",
3538          "locationName":"id"
3539        },
3540        "alias":{
3541          "shape":"UpdateDevEnvironmentRequestAliasString",
3542          "documentation":"<p>The user-specified alias for the Dev Environment. Changing this value will not cause a restart.</p>"
3543        },
3544        "ides":{
3545          "shape":"IdeConfigurationList",
3546          "documentation":"<p>Information about the integrated development environment (IDE) configured for a Dev Environment.</p>"
3547        },
3548        "instanceType":{
3549          "shape":"InstanceType",
3550          "documentation":"<p>The Amazon EC2 instace type to use for the Dev Environment. </p> <note> <p>Changing this value will cause a restart of the Dev Environment if it is running.</p> </note>"
3551        },
3552        "inactivityTimeoutMinutes":{
3553          "shape":"InactivityTimeoutMinutes",
3554          "documentation":"<p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.</p> <note> <p>Changing this value will cause a restart of the Dev Environment if it is running.</p> </note>"
3555        },
3556        "clientToken":{
3557          "shape":"ClientToken",
3558          "documentation":"<p>A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>"
3559        }
3560      }
3561    },
3562    "UpdateDevEnvironmentRequestAliasString":{
3563      "type":"string",
3564      "max":128,
3565      "min":0,
3566      "pattern":"$|^[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
3567    },
3568    "UpdateDevEnvironmentResponse":{
3569      "type":"structure",
3570      "required":[
3571        "id",
3572        "spaceName",
3573        "projectName"
3574      ],
3575      "members":{
3576        "id":{
3577          "shape":"Uuid",
3578          "documentation":"<p>The system-generated unique ID of the Dev Environment. </p>"
3579        },
3580        "spaceName":{
3581          "shape":"NameString",
3582          "documentation":"<p>The name of the space.</p>"
3583        },
3584        "projectName":{
3585          "shape":"NameString",
3586          "documentation":"<p>The name of the project in the space.</p>"
3587        },
3588        "alias":{
3589          "shape":"UpdateDevEnvironmentResponseAliasString",
3590          "documentation":"<p>The user-specified alias for the Dev Environment.</p>"
3591        },
3592        "ides":{
3593          "shape":"IdeConfigurationList",
3594          "documentation":"<p>Information about the integrated development environment (IDE) configured for the Dev Environment.</p>"
3595        },
3596        "instanceType":{
3597          "shape":"InstanceType",
3598          "documentation":"<p>The Amazon EC2 instace type to use for the Dev Environment. </p>"
3599        },
3600        "inactivityTimeoutMinutes":{
3601          "shape":"InactivityTimeoutMinutes",
3602          "documentation":"<p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. </p>"
3603        },
3604        "clientToken":{
3605          "shape":"ClientToken",
3606          "documentation":"<p>A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>"
3607        }
3608      }
3609    },
3610    "UpdateDevEnvironmentResponseAliasString":{
3611      "type":"string",
3612      "max":128,
3613      "min":1,
3614      "pattern":"[a-zA-Z0-9]+(?:[-_\\.][a-zA-Z0-9]+)*"
3615    },
3616    "UpdateProjectRequest":{
3617      "type":"structure",
3618      "required":[
3619        "spaceName",
3620        "name"
3621      ],
3622      "members":{
3623        "spaceName":{
3624          "shape":"NameString",
3625          "documentation":"<p>The name of the space.</p>",
3626          "location":"uri",
3627          "locationName":"spaceName"
3628        },
3629        "name":{
3630          "shape":"NameString",
3631          "documentation":"<p>The name of the project.</p>",
3632          "location":"uri",
3633          "locationName":"name"
3634        },
3635        "description":{
3636          "shape":"ProjectDescription",
3637          "documentation":"<p>The description of the project.</p>"
3638        }
3639      }
3640    },
3641    "UpdateProjectResponse":{
3642      "type":"structure",
3643      "members":{
3644        "spaceName":{
3645          "shape":"NameString",
3646          "documentation":"<p>The name of the space.</p>"
3647        },
3648        "name":{
3649          "shape":"NameString",
3650          "documentation":"<p>The name of the project.</p>"
3651        },
3652        "displayName":{
3653          "shape":"String",
3654          "documentation":"<p>The friendly name of the project displayed to users in Amazon CodeCatalyst.</p>"
3655        },
3656        "description":{
3657          "shape":"String",
3658          "documentation":"<p>The description of the project.</p>"
3659        }
3660      }
3661    },
3662    "UpdateSpaceRequest":{
3663      "type":"structure",
3664      "required":["name"],
3665      "members":{
3666        "name":{
3667          "shape":"NameString",
3668          "documentation":"<p>The name of the space.</p>",
3669          "location":"uri",
3670          "locationName":"name"
3671        },
3672        "description":{
3673          "shape":"SpaceDescription",
3674          "documentation":"<p>The description of the space.</p>"
3675        }
3676      }
3677    },
3678    "UpdateSpaceResponse":{
3679      "type":"structure",
3680      "members":{
3681        "name":{
3682          "shape":"NameString",
3683          "documentation":"<p>The name of the space.</p>"
3684        },
3685        "displayName":{
3686          "shape":"String",
3687          "documentation":"<p>The friendly name of the space displayed to users in Amazon CodeCatalyst.</p>"
3688        },
3689        "description":{
3690          "shape":"String",
3691          "documentation":"<p>The description of the space.</p>"
3692        }
3693      }
3694    },
3695    "UserIdentity":{
3696      "type":"structure",
3697      "required":[
3698        "userType",
3699        "principalId"
3700      ],
3701      "members":{
3702        "userType":{
3703          "shape":"UserType",
3704          "documentation":"<p>The role assigned to the user in a Amazon CodeCatalyst space or project when the event occurred.</p>"
3705        },
3706        "principalId":{
3707          "shape":"String",
3708          "documentation":"<p>The ID of the Amazon CodeCatalyst service principal.</p>"
3709        },
3710        "userName":{
3711          "shape":"String",
3712          "documentation":"<p>The display name of the user in Amazon CodeCatalyst.</p>"
3713        },
3714        "awsAccountId":{
3715          "shape":"String",
3716          "documentation":"<p>The Amazon Web Services account number of the user in Amazon Web Services, if any.</p>"
3717        }
3718      },
3719      "documentation":"<p>Information about a user whose activity is recorded in an event for a space.</p>"
3720    },
3721    "UserType":{
3722      "type":"string",
3723      "enum":[
3724        "USER",
3725        "AWS_ACCOUNT",
3726        "UNKNOWN"
3727      ]
3728    },
3729    "Uuid":{
3730      "type":"string",
3731      "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}"
3732    },
3733    "ValidationException":{
3734      "type":"structure",
3735      "required":["message"],
3736      "members":{
3737        "message":{"shape":"String"}
3738      },
3739      "documentation":"<p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>",
3740      "error":{
3741        "httpStatusCode":400,
3742        "senderFault":true
3743      },
3744      "exception":true
3745    },
3746    "VerifySessionResponse":{
3747      "type":"structure",
3748      "members":{
3749        "identity":{
3750          "shape":"VerifySessionResponseIdentityString",
3751          "documentation":"<p>The system-generated unique ID of the user in Amazon CodeCatalyst.</p>"
3752        }
3753      }
3754    },
3755    "VerifySessionResponseIdentityString":{
3756      "type":"string",
3757      "max":256,
3758      "min":1
3759    },
3760    "WorkflowDefinition":{
3761      "type":"structure",
3762      "required":["path"],
3763      "members":{
3764        "path":{
3765          "shape":"String",
3766          "documentation":"<p>The path to the workflow definition file stored in the source repository for the project, including the file name.</p>"
3767        }
3768      },
3769      "documentation":"<p>Information about a workflow definition file.</p>"
3770    },
3771    "WorkflowDefinitionSummary":{
3772      "type":"structure",
3773      "required":["path"],
3774      "members":{
3775        "path":{
3776          "shape":"String",
3777          "documentation":"<p>The path to the workflow definition file stored in the source repository for the project, including the file name.</p>"
3778        }
3779      },
3780      "documentation":"<p>Information about a workflow definition.</p>"
3781    },
3782    "WorkflowRunMode":{
3783      "type":"string",
3784      "enum":[
3785        "QUEUED",
3786        "PARALLEL",
3787        "SUPERSEDED"
3788      ]
3789    },
3790    "WorkflowRunSortCriteria":{
3791      "type":"structure",
3792      "members":{
3793      },
3794      "documentation":"<p>Information used to sort workflow runs in the returned list.</p>"
3795    },
3796    "WorkflowRunSortCriteriaList":{
3797      "type":"list",
3798      "member":{"shape":"WorkflowRunSortCriteria"},
3799      "max":1,
3800      "min":0
3801    },
3802    "WorkflowRunStatus":{
3803      "type":"string",
3804      "enum":[
3805        "SUCCEEDED",
3806        "FAILED",
3807        "STOPPED",
3808        "SUPERSEDED",
3809        "CANCELLED",
3810        "NOT_RUN",
3811        "VALIDATING",
3812        "PROVISIONING",
3813        "IN_PROGRESS",
3814        "STOPPING",
3815        "ABANDONED"
3816      ]
3817    },
3818    "WorkflowRunStatusReason":{
3819      "type":"structure",
3820      "members":{
3821      },
3822      "documentation":"<p>Information about the status of a workflow run.</p>"
3823    },
3824    "WorkflowRunStatusReasons":{
3825      "type":"list",
3826      "member":{"shape":"WorkflowRunStatusReason"}
3827    },
3828    "WorkflowRunSummaries":{
3829      "type":"list",
3830      "member":{"shape":"WorkflowRunSummary"}
3831    },
3832    "WorkflowRunSummary":{
3833      "type":"structure",
3834      "required":[
3835        "id",
3836        "workflowId",
3837        "workflowName",
3838        "status",
3839        "startTime",
3840        "lastUpdatedTime"
3841      ],
3842      "members":{
3843        "id":{
3844          "shape":"Uuid",
3845          "documentation":"<p>The system-generated unique ID of the workflow run.</p>"
3846        },
3847        "workflowId":{
3848          "shape":"Uuid",
3849          "documentation":"<p>The system-generated unique ID of the workflow.</p>"
3850        },
3851        "workflowName":{
3852          "shape":"String",
3853          "documentation":"<p>The name of the workflow.</p>"
3854        },
3855        "status":{
3856          "shape":"WorkflowRunStatus",
3857          "documentation":"<p>The status of the workflow run.</p>"
3858        },
3859        "statusReasons":{
3860          "shape":"WorkflowRunStatusReasons",
3861          "documentation":"<p>The reasons for the workflow run status.</p>"
3862        },
3863        "startTime":{
3864          "shape":"SyntheticTimestamp_date_time",
3865          "documentation":"<p>The date and time the workflow run began, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a>.</p>"
3866        },
3867        "endTime":{
3868          "shape":"SyntheticTimestamp_date_time",
3869          "documentation":"<p>The date and time the workflow run ended, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
3870        },
3871        "lastUpdatedTime":{
3872          "shape":"SyntheticTimestamp_date_time",
3873          "documentation":"<p>The date and time the workflow was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
3874        }
3875      },
3876      "documentation":"<p>Information about a workflow run.</p>"
3877    },
3878    "WorkflowSortCriteria":{
3879      "type":"structure",
3880      "members":{
3881      },
3882      "documentation":"<p>Information used to sort workflows in the returned list.</p>"
3883    },
3884    "WorkflowSortCriteriaList":{
3885      "type":"list",
3886      "member":{"shape":"WorkflowSortCriteria"},
3887      "max":1,
3888      "min":0
3889    },
3890    "WorkflowStatus":{
3891      "type":"string",
3892      "enum":[
3893        "INVALID",
3894        "ACTIVE"
3895      ]
3896    },
3897    "WorkflowSummaries":{
3898      "type":"list",
3899      "member":{"shape":"WorkflowSummary"}
3900    },
3901    "WorkflowSummary":{
3902      "type":"structure",
3903      "required":[
3904        "id",
3905        "name",
3906        "sourceRepositoryName",
3907        "sourceBranchName",
3908        "definition",
3909        "createdTime",
3910        "lastUpdatedTime",
3911        "runMode",
3912        "status"
3913      ],
3914      "members":{
3915        "id":{
3916          "shape":"Uuid",
3917          "documentation":"<p>The system-generated unique ID of a workflow.</p>"
3918        },
3919        "name":{
3920          "shape":"String",
3921          "documentation":"<p>The name of the workflow.</p>"
3922        },
3923        "sourceRepositoryName":{
3924          "shape":"SourceRepositoryNameString",
3925          "documentation":"<p>The name of the source repository where the workflow definition file is stored.</p>"
3926        },
3927        "sourceBranchName":{
3928          "shape":"SourceRepositoryBranchString",
3929          "documentation":"<p>The name of the branch of the source repository where the workflow definition file is stored.</p>"
3930        },
3931        "definition":{
3932          "shape":"WorkflowDefinitionSummary",
3933          "documentation":"<p>Information about the workflow definition file.</p>"
3934        },
3935        "createdTime":{
3936          "shape":"SyntheticTimestamp_date_time",
3937          "documentation":"<p>The date and time the workflow was created, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
3938        },
3939        "lastUpdatedTime":{
3940          "shape":"SyntheticTimestamp_date_time",
3941          "documentation":"<p>The date and time the workflow was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href=\"https://www.rfc-editor.org/rfc/rfc3339#section-5.6\">RFC 3339</a> </p>"
3942        },
3943        "runMode":{
3944          "shape":"WorkflowRunMode",
3945          "documentation":"<p>The run mode of the workflow.</p>"
3946        },
3947        "status":{
3948          "shape":"WorkflowStatus",
3949          "documentation":"<p>The status of the workflow.</p>"
3950        }
3951      },
3952      "documentation":"<p>Information about a workflow.</p>"
3953    }
3954  },
3955  "documentation":"<p>Welcome to the Amazon CodeCatalyst API reference. This reference provides descriptions of operations and data types for Amazon CodeCatalyst. You can use the Amazon CodeCatalyst API to work with the following objects. </p> <p>Spaces, by calling the following:</p> <ul> <li> <p> <a>DeleteSpace</a>, which deletes a space.</p> </li> <li> <p> <a>GetSpace</a>, which returns information about a space.</p> </li> <li> <p> <a>GetSubscription</a>, which returns information about the Amazon Web Services account used for billing purposes and the billing plan for the space.</p> </li> <li> <p> <a>ListSpaces</a>, which retrieves a list of spaces.</p> </li> <li> <p> <a>UpdateSpace</a>, which changes one or more values for a space.</p> </li> </ul> <p>Projects, by calling the following:</p> <ul> <li> <p> <a>CreateProject</a> which creates a project in a specified space.</p> </li> <li> <p> <a>GetProject</a>, which returns information about a project.</p> </li> <li> <p> <a>ListProjects</a>, which retrieves a list of projects in a space.</p> </li> </ul> <p>Users, by calling the following:</p> <ul> <li> <p> <a>GetUserDetails</a>, which returns information about a user in Amazon CodeCatalyst.</p> </li> </ul> <p>Source repositories, by calling the following:</p> <ul> <li> <p> <a>CreateSourceRepository</a>, which creates an empty Git-based source repository in a specified project.</p> </li> <li> <p> <a>CreateSourceRepositoryBranch</a>, which creates a branch in a specified repository where you can work on code.</p> </li> <li> <p> <a>DeleteSourceRepository</a>, which deletes a source repository.</p> </li> <li> <p> <a>GetSourceRepository</a>, which returns information about a source repository.</p> </li> <li> <p> <a>GetSourceRepositoryCloneUrls</a>, which returns information about the URLs that can be used with a Git client to clone a source repository.</p> </li> <li> <p> <a>ListSourceRepositories</a>, which retrieves a list of source repositories in a project.</p> </li> <li> <p> <a>ListSourceRepositoryBranches</a>, which retrieves a list of branches in a source repository.</p> </li> </ul> <p>Dev Environments and the Amazon Web Services Toolkits, by calling the following:</p> <ul> <li> <p> <a>CreateDevEnvironment</a>, which creates a Dev Environment, where you can quickly work on the code stored in the source repositories of your project.</p> </li> <li> <p> <a>DeleteDevEnvironment</a>, which deletes a Dev Environment.</p> </li> <li> <p> <a>GetDevEnvironment</a>, which returns information about a Dev Environment.</p> </li> <li> <p> <a>ListDevEnvironments</a>, which retrieves a list of Dev Environments in a project.</p> </li> <li> <p> <a>ListDevEnvironmentSessions</a>, which retrieves a list of active Dev Environment sessions in a project.</p> </li> <li> <p> <a>StartDevEnvironment</a>, which starts a specified Dev Environment and puts it into an active state.</p> </li> <li> <p> <a>StartDevEnvironmentSession</a>, which starts a session to a specified Dev Environment.</p> </li> <li> <p> <a>StopDevEnvironment</a>, which stops a specified Dev Environment and puts it into an stopped state.</p> </li> <li> <p> <a>StopDevEnvironmentSession</a>, which stops a session for a specified Dev Environment.</p> </li> <li> <p> <a>UpdateDevEnvironment</a>, which changes one or more values for a Dev Environment.</p> </li> </ul> <p>Workflows, by calling the following:</p> <ul> <li> <p> <a>GetWorkflow</a>, which returns information about a workflow.</p> </li> <li> <p> <a>GetWorkflowRun</a>, which returns information about a specified run of a workflow.</p> </li> <li> <p> <a>ListWorkflowRuns</a>, which retrieves a list of runs of a specified workflow.</p> </li> <li> <p> <a>ListWorkflows</a>, which retrieves a list of workflows in a specified project.</p> </li> <li> <p> <a>StartWorkflowRun</a>, which starts a run of a specified workflow.</p> </li> </ul> <p>Security, activity, and resource management in Amazon CodeCatalyst, by calling the following:</p> <ul> <li> <p> <a>CreateAccessToken</a>, which creates a personal access token (PAT) for the current user.</p> </li> <li> <p> <a>DeleteAccessToken</a>, which deletes a specified personal access token (PAT).</p> </li> <li> <p> <a>ListAccessTokens</a>, which lists all personal access tokens (PATs) associated with a user.</p> </li> <li> <p> <a>ListEventLogs</a>, which retrieves a list of events that occurred during a specified time period in a space.</p> </li> <li> <p> <a>VerifySession</a>, which verifies whether the calling user has a valid Amazon CodeCatalyst login and session.</p> </li> </ul> <note> <p>If you are using the Amazon CodeCatalyst APIs with an SDK or the CLI, you must configure your computer to work with Amazon CodeCatalyst and single sign-on (SSO). For more information, see <a href=\"https://docs.aws.amazon.com/codecatalyst/latest/userguide/set-up-cli.html\">Setting up to use the CLI with Amazon CodeCatalyst</a> and the SSO documentation for your SDK.</p> </note>"
3956}
3957