aws-sdk-codecatalyst 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2040 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::CodeCatalyst
11
+ module Types
12
+
13
+ # The request was denied because you don't have sufficient access to
14
+ # perform this action. Verify that you are a member of a role that
15
+ # allows this action.
16
+ #
17
+ # @!attribute [rw] message
18
+ # @return [String]
19
+ #
20
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/AccessDeniedException AWS API Documentation
21
+ #
22
+ class AccessDeniedException < Struct.new(
23
+ :message)
24
+ SENSITIVE = []
25
+ include Aws::Structure
26
+ end
27
+
28
+ # Information about a specified personal access token (PAT).
29
+ #
30
+ # @!attribute [rw] id
31
+ # The system-generated ID of the personal access token.
32
+ # @return [String]
33
+ #
34
+ # @!attribute [rw] name
35
+ # The friendly name of the personal access token.
36
+ # @return [String]
37
+ #
38
+ # @!attribute [rw] expires_time
39
+ # The date and time when the personal access token will expire, in
40
+ # coordinated universal time (UTC) timestamp format as specified in
41
+ # [RFC 3339][1].
42
+ #
43
+ #
44
+ #
45
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
46
+ # @return [Time]
47
+ #
48
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/AccessTokenSummary AWS API Documentation
49
+ #
50
+ class AccessTokenSummary < Struct.new(
51
+ :id,
52
+ :name,
53
+ :expires_time)
54
+ SENSITIVE = []
55
+ include Aws::Structure
56
+ end
57
+
58
+ # The request was denied because the requested operation would cause a
59
+ # conflict with the current state of a service resource associated with
60
+ # the request. Another user might have updated the resource. Reload,
61
+ # make sure you have the latest data, and then try again.
62
+ #
63
+ # @!attribute [rw] message
64
+ # @return [String]
65
+ #
66
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ConflictException AWS API Documentation
67
+ #
68
+ class ConflictException < Struct.new(
69
+ :message)
70
+ SENSITIVE = []
71
+ include Aws::Structure
72
+ end
73
+
74
+ # @!attribute [rw] name
75
+ # The friendly name of the personal access token.
76
+ # @return [String]
77
+ #
78
+ # @!attribute [rw] expires_time
79
+ # The date and time the personal access token expires, in coordinated
80
+ # universal time (UTC) timestamp format as specified in [RFC 3339][1].
81
+ #
82
+ #
83
+ #
84
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
85
+ # @return [Time]
86
+ #
87
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateAccessTokenRequest AWS API Documentation
88
+ #
89
+ class CreateAccessTokenRequest < Struct.new(
90
+ :name,
91
+ :expires_time)
92
+ SENSITIVE = []
93
+ include Aws::Structure
94
+ end
95
+
96
+ # @!attribute [rw] secret
97
+ # The secret value of the personal access token.
98
+ # @return [String]
99
+ #
100
+ # @!attribute [rw] name
101
+ # The friendly name of the personal access token.
102
+ # @return [String]
103
+ #
104
+ # @!attribute [rw] expires_time
105
+ # The date and time the personal access token expires, in coordinated
106
+ # universal time (UTC) timestamp format as specified in [RFC 3339][1].
107
+ # If not specified, the default is one year from creation.
108
+ #
109
+ #
110
+ #
111
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
112
+ # @return [Time]
113
+ #
114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateAccessTokenResponse AWS API Documentation
115
+ #
116
+ class CreateAccessTokenResponse < Struct.new(
117
+ :secret,
118
+ :name,
119
+ :expires_time)
120
+ SENSITIVE = [:secret]
121
+ include Aws::Structure
122
+ end
123
+
124
+ # @!attribute [rw] space_name
125
+ # The name of the space.
126
+ # @return [String]
127
+ #
128
+ # @!attribute [rw] project_name
129
+ # The name of the project in the space.
130
+ # @return [String]
131
+ #
132
+ # @!attribute [rw] repositories
133
+ # The source repository that contains the branch to clone into the Dev
134
+ # Environment.
135
+ # @return [Array<Types::RepositoryInput>]
136
+ #
137
+ # @!attribute [rw] client_token
138
+ # A user-specified idempotency token. Idempotency ensures that an API
139
+ # request completes only once. With an idempotent request, if the
140
+ # original request completes successfully, the subsequent retries
141
+ # return the result from the original successful request and have no
142
+ # additional effect.
143
+ # @return [String]
144
+ #
145
+ # @!attribute [rw] alias
146
+ # The user-defined alias for a Dev Environment.
147
+ # @return [String]
148
+ #
149
+ # @!attribute [rw] ides
150
+ # Information about the integrated development environment (IDE)
151
+ # configured for a Dev Environment.
152
+ #
153
+ # <note markdown="1"> An IDE is required to create a Dev Environment. For Dev Environment
154
+ # creation, this field contains configuration information and must be
155
+ # provided.
156
+ #
157
+ # </note>
158
+ # @return [Array<Types::IdeConfiguration>]
159
+ #
160
+ # @!attribute [rw] instance_type
161
+ # The Amazon EC2 instace type to use for the Dev Environment.
162
+ # @return [String]
163
+ #
164
+ # @!attribute [rw] inactivity_timeout_minutes
165
+ # The amount of time the Dev Environment will run without any activity
166
+ # detected before stopping, in minutes. Only whole integers are
167
+ # allowed. Dev Environments consume compute minutes when running.
168
+ # @return [Integer]
169
+ #
170
+ # @!attribute [rw] persistent_storage
171
+ # Information about the amount of storage allocated to the Dev
172
+ # Environment. By default, a Dev Environment is configured to have
173
+ # 16GB of persistent storage.
174
+ #
175
+ # <note markdown="1"> Valid values for persistent storage are based on memory sizes in
176
+ # 16GB increments. Valid values are 16, 32, and 64.
177
+ #
178
+ # </note>
179
+ # @return [Types::PersistentStorageConfiguration]
180
+ #
181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentRequest AWS API Documentation
182
+ #
183
+ class CreateDevEnvironmentRequest < Struct.new(
184
+ :space_name,
185
+ :project_name,
186
+ :repositories,
187
+ :client_token,
188
+ :alias,
189
+ :ides,
190
+ :instance_type,
191
+ :inactivity_timeout_minutes,
192
+ :persistent_storage)
193
+ SENSITIVE = []
194
+ include Aws::Structure
195
+ end
196
+
197
+ # @!attribute [rw] space_name
198
+ # The name of the space.
199
+ # @return [String]
200
+ #
201
+ # @!attribute [rw] project_name
202
+ # The name of the project in the space.
203
+ # @return [String]
204
+ #
205
+ # @!attribute [rw] id
206
+ # The system-generated unique ID of the Dev Environment.
207
+ # @return [String]
208
+ #
209
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateDevEnvironmentResponse AWS API Documentation
210
+ #
211
+ class CreateDevEnvironmentResponse < Struct.new(
212
+ :space_name,
213
+ :project_name,
214
+ :id)
215
+ SENSITIVE = []
216
+ include Aws::Structure
217
+ end
218
+
219
+ # @!attribute [rw] space_name
220
+ # The name of the space.
221
+ # @return [String]
222
+ #
223
+ # @!attribute [rw] display_name
224
+ # The friendly name of the project that will be displayed to users.
225
+ # @return [String]
226
+ #
227
+ # @!attribute [rw] description
228
+ # The description of the project. This description will be displayed
229
+ # to all users of the project. We recommend providing a brief
230
+ # description of the project and its intended purpose.
231
+ # @return [String]
232
+ #
233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateProjectRequest AWS API Documentation
234
+ #
235
+ class CreateProjectRequest < Struct.new(
236
+ :space_name,
237
+ :display_name,
238
+ :description)
239
+ SENSITIVE = []
240
+ include Aws::Structure
241
+ end
242
+
243
+ # @!attribute [rw] space_name
244
+ # The name of the space.
245
+ # @return [String]
246
+ #
247
+ # @!attribute [rw] name
248
+ # The name of the project in the space.
249
+ # @return [String]
250
+ #
251
+ # @!attribute [rw] display_name
252
+ # The friendly name of the project.
253
+ # @return [String]
254
+ #
255
+ # @!attribute [rw] description
256
+ # The description of the project.
257
+ # @return [String]
258
+ #
259
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateProjectResponse AWS API Documentation
260
+ #
261
+ class CreateProjectResponse < Struct.new(
262
+ :space_name,
263
+ :name,
264
+ :display_name,
265
+ :description)
266
+ SENSITIVE = []
267
+ include Aws::Structure
268
+ end
269
+
270
+ # @!attribute [rw] space_name
271
+ # The name of the space.
272
+ # @return [String]
273
+ #
274
+ # @!attribute [rw] project_name
275
+ # The name of the project in the space.
276
+ # @return [String]
277
+ #
278
+ # @!attribute [rw] source_repository_name
279
+ # The name of the repository where you want to create a branch.
280
+ # @return [String]
281
+ #
282
+ # @!attribute [rw] name
283
+ # The name for the branch you're creating.
284
+ # @return [String]
285
+ #
286
+ # @!attribute [rw] head_commit_id
287
+ # The commit ID in an existing branch from which you want to create
288
+ # the new branch.
289
+ # @return [String]
290
+ #
291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateSourceRepositoryBranchRequest AWS API Documentation
292
+ #
293
+ class CreateSourceRepositoryBranchRequest < Struct.new(
294
+ :space_name,
295
+ :project_name,
296
+ :source_repository_name,
297
+ :name,
298
+ :head_commit_id)
299
+ SENSITIVE = []
300
+ include Aws::Structure
301
+ end
302
+
303
+ # @!attribute [rw] ref
304
+ # The Git reference name of the branch.
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] name
308
+ # The name of the newly created branch.
309
+ # @return [String]
310
+ #
311
+ # @!attribute [rw] last_updated_time
312
+ # The time the branch was last updated, in coordinated universal time
313
+ # (UTC) timestamp format as specified in [RFC 3339][1].
314
+ #
315
+ #
316
+ #
317
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
318
+ # @return [Time]
319
+ #
320
+ # @!attribute [rw] head_commit_id
321
+ # The commit ID of the tip of the newly created branch.
322
+ # @return [String]
323
+ #
324
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/CreateSourceRepositoryBranchResponse AWS API Documentation
325
+ #
326
+ class CreateSourceRepositoryBranchResponse < Struct.new(
327
+ :ref,
328
+ :name,
329
+ :last_updated_time,
330
+ :head_commit_id)
331
+ SENSITIVE = []
332
+ include Aws::Structure
333
+ end
334
+
335
+ # @!attribute [rw] id
336
+ # The ID of the personal access token to delete. You can find the IDs
337
+ # of all PATs associated with your user account by calling
338
+ # ListAccessTokens.
339
+ # @return [String]
340
+ #
341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DeleteAccessTokenRequest AWS API Documentation
342
+ #
343
+ class DeleteAccessTokenRequest < Struct.new(
344
+ :id)
345
+ SENSITIVE = []
346
+ include Aws::Structure
347
+ end
348
+
349
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DeleteAccessTokenResponse AWS API Documentation
350
+ #
351
+ class DeleteAccessTokenResponse < Aws::EmptyStructure; end
352
+
353
+ # @!attribute [rw] space_name
354
+ # The name of the space.
355
+ # @return [String]
356
+ #
357
+ # @!attribute [rw] project_name
358
+ # The name of the project in the space.
359
+ # @return [String]
360
+ #
361
+ # @!attribute [rw] id
362
+ # The system-generated unique ID of the Dev Environment you want to
363
+ # delete. To retrieve a list of Dev Environment IDs, use
364
+ # ListDevEnvironments.
365
+ # @return [String]
366
+ #
367
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DeleteDevEnvironmentRequest AWS API Documentation
368
+ #
369
+ class DeleteDevEnvironmentRequest < Struct.new(
370
+ :space_name,
371
+ :project_name,
372
+ :id)
373
+ SENSITIVE = []
374
+ include Aws::Structure
375
+ end
376
+
377
+ # @!attribute [rw] space_name
378
+ # The name of the space.
379
+ # @return [String]
380
+ #
381
+ # @!attribute [rw] project_name
382
+ # The name of the project in the space.
383
+ # @return [String]
384
+ #
385
+ # @!attribute [rw] id
386
+ # The system-generated unique ID of the deleted Dev Environment.
387
+ # @return [String]
388
+ #
389
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DeleteDevEnvironmentResponse AWS API Documentation
390
+ #
391
+ class DeleteDevEnvironmentResponse < Struct.new(
392
+ :space_name,
393
+ :project_name,
394
+ :id)
395
+ SENSITIVE = []
396
+ include Aws::Structure
397
+ end
398
+
399
+ # Information about connection details for a Dev Environment.
400
+ #
401
+ # @!attribute [rw] stream_url
402
+ # The URL used to send commands to and from the Dev Environment.
403
+ # @return [String]
404
+ #
405
+ # @!attribute [rw] token_value
406
+ # An encrypted token value that contains session and caller
407
+ # information used to authenticate the connection.
408
+ # @return [String]
409
+ #
410
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DevEnvironmentAccessDetails AWS API Documentation
411
+ #
412
+ class DevEnvironmentAccessDetails < Struct.new(
413
+ :stream_url,
414
+ :token_value)
415
+ SENSITIVE = [:stream_url, :token_value]
416
+ include Aws::Structure
417
+ end
418
+
419
+ # Information about the source repsitory for a Dev Environment.
420
+ #
421
+ # @!attribute [rw] repository_name
422
+ # The name of the source repository.
423
+ # @return [String]
424
+ #
425
+ # @!attribute [rw] branch_name
426
+ # The name of the branch in a source repository cloned into the Dev
427
+ # Environment.
428
+ # @return [String]
429
+ #
430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DevEnvironmentRepositorySummary AWS API Documentation
431
+ #
432
+ class DevEnvironmentRepositorySummary < Struct.new(
433
+ :repository_name,
434
+ :branch_name)
435
+ SENSITIVE = []
436
+ include Aws::Structure
437
+ end
438
+
439
+ # Information about the configuration of a Dev Environment session.
440
+ #
441
+ # @!attribute [rw] session_type
442
+ # The type of the session.
443
+ # @return [String]
444
+ #
445
+ # @!attribute [rw] execute_command_session_configuration
446
+ # Information about optional commands that will be run on the Dev
447
+ # Environment when the SSH session begins.
448
+ # @return [Types::ExecuteCommandSessionConfiguration]
449
+ #
450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DevEnvironmentSessionConfiguration AWS API Documentation
451
+ #
452
+ class DevEnvironmentSessionConfiguration < Struct.new(
453
+ :session_type,
454
+ :execute_command_session_configuration)
455
+ SENSITIVE = []
456
+ include Aws::Structure
457
+ end
458
+
459
+ # Information about a Dev Environment.
460
+ #
461
+ # @!attribute [rw] space_name
462
+ # The name of the space.
463
+ # @return [String]
464
+ #
465
+ # @!attribute [rw] project_name
466
+ # The name of the project in the space.
467
+ # @return [String]
468
+ #
469
+ # @!attribute [rw] id
470
+ # The system-generated unique ID for the Dev Environment.
471
+ # @return [String]
472
+ #
473
+ # @!attribute [rw] last_updated_time
474
+ # The time when the Dev Environment was last updated, in coordinated
475
+ # universal time (UTC) timestamp format as specified in [RFC 3339][1].
476
+ #
477
+ #
478
+ #
479
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
480
+ # @return [Time]
481
+ #
482
+ # @!attribute [rw] creator_id
483
+ # The system-generated unique ID of the user who created the Dev
484
+ # Environment.
485
+ # @return [String]
486
+ #
487
+ # @!attribute [rw] status
488
+ # The status of the Dev Environment.
489
+ # @return [String]
490
+ #
491
+ # @!attribute [rw] status_reason
492
+ # The reason for the status.
493
+ # @return [String]
494
+ #
495
+ # @!attribute [rw] repositories
496
+ # Information about the repositories that will be cloned into the Dev
497
+ # Environment. If no rvalue is specified, no repository is cloned.
498
+ # @return [Array<Types::DevEnvironmentRepositorySummary>]
499
+ #
500
+ # @!attribute [rw] alias
501
+ # The user-specified alias for the Dev Environment.
502
+ # @return [String]
503
+ #
504
+ # @!attribute [rw] ides
505
+ # Information about the integrated development environment (IDE)
506
+ # configured for a Dev Environment.
507
+ # @return [Array<Types::Ide>]
508
+ #
509
+ # @!attribute [rw] instance_type
510
+ # The Amazon EC2 instace type used for the Dev Environment.
511
+ # @return [String]
512
+ #
513
+ # @!attribute [rw] inactivity_timeout_minutes
514
+ # The amount of time the Dev Environment will run without any activity
515
+ # detected before stopping, in minutes. Dev Environments consume
516
+ # compute minutes when running.
517
+ # @return [Integer]
518
+ #
519
+ # @!attribute [rw] persistent_storage
520
+ # Information about the configuration of persistent storage for the
521
+ # Dev Environment.
522
+ # @return [Types::PersistentStorage]
523
+ #
524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/DevEnvironmentSummary AWS API Documentation
525
+ #
526
+ class DevEnvironmentSummary < Struct.new(
527
+ :space_name,
528
+ :project_name,
529
+ :id,
530
+ :last_updated_time,
531
+ :creator_id,
532
+ :status,
533
+ :status_reason,
534
+ :repositories,
535
+ :alias,
536
+ :ides,
537
+ :instance_type,
538
+ :inactivity_timeout_minutes,
539
+ :persistent_storage)
540
+ SENSITIVE = []
541
+ include Aws::Structure
542
+ end
543
+
544
+ # Information about an email address.
545
+ #
546
+ # @!attribute [rw] email
547
+ # The email address.
548
+ # @return [String]
549
+ #
550
+ # @!attribute [rw] verified
551
+ # Whether the email address has been verified.
552
+ # @return [Boolean]
553
+ #
554
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/EmailAddress AWS API Documentation
555
+ #
556
+ class EmailAddress < Struct.new(
557
+ :email,
558
+ :verified)
559
+ SENSITIVE = []
560
+ include Aws::Structure
561
+ end
562
+
563
+ # Information about an entry in an event log of Amazon CodeCatalyst
564
+ # activity.
565
+ #
566
+ # @!attribute [rw] id
567
+ # The system-generated unique ID of the event.
568
+ # @return [String]
569
+ #
570
+ # @!attribute [rw] event_name
571
+ # The name of the event.
572
+ # @return [String]
573
+ #
574
+ # @!attribute [rw] event_type
575
+ # The type of the event.
576
+ # @return [String]
577
+ #
578
+ # @!attribute [rw] event_category
579
+ # The category for the event.
580
+ # @return [String]
581
+ #
582
+ # @!attribute [rw] event_source
583
+ # The source of the event.
584
+ # @return [String]
585
+ #
586
+ # @!attribute [rw] event_time
587
+ # The time the event took place, in coordinated universal time (UTC)
588
+ # timestamp format as specified in [RFC 3339][1].
589
+ #
590
+ #
591
+ #
592
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
593
+ # @return [Time]
594
+ #
595
+ # @!attribute [rw] operation_type
596
+ # The type of the event.
597
+ # @return [String]
598
+ #
599
+ # @!attribute [rw] user_identity
600
+ # The system-generated unique ID of the user whose actions are
601
+ # recorded in the event.
602
+ # @return [Types::UserIdentity]
603
+ #
604
+ # @!attribute [rw] project_information
605
+ # Information about the project where the event occurred.
606
+ # @return [Types::ProjectInformation]
607
+ #
608
+ # @!attribute [rw] request_id
609
+ # The system-generated unique ID of the request.
610
+ # @return [String]
611
+ #
612
+ # @!attribute [rw] request_payload
613
+ # Information about the payload of the request.
614
+ # @return [Types::EventPayload]
615
+ #
616
+ # @!attribute [rw] response_payload
617
+ # Information about the payload of the response, if any.
618
+ # @return [Types::EventPayload]
619
+ #
620
+ # @!attribute [rw] error_code
621
+ # The code of the error, if any.
622
+ # @return [String]
623
+ #
624
+ # @!attribute [rw] source_ip_address
625
+ # The IP address of the user whose actions are recorded in the event.
626
+ # @return [String]
627
+ #
628
+ # @!attribute [rw] user_agent
629
+ # @return [String]
630
+ #
631
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/EventLogEntry AWS API Documentation
632
+ #
633
+ class EventLogEntry < Struct.new(
634
+ :id,
635
+ :event_name,
636
+ :event_type,
637
+ :event_category,
638
+ :event_source,
639
+ :event_time,
640
+ :operation_type,
641
+ :user_identity,
642
+ :project_information,
643
+ :request_id,
644
+ :request_payload,
645
+ :response_payload,
646
+ :error_code,
647
+ :source_ip_address,
648
+ :user_agent)
649
+ SENSITIVE = []
650
+ include Aws::Structure
651
+ end
652
+
653
+ # Information about the payload of an event recording Amazon
654
+ # CodeCatalyst activity.
655
+ #
656
+ # @!attribute [rw] content_type
657
+ # The type of content in the event payload.
658
+ # @return [String]
659
+ #
660
+ # @!attribute [rw] data
661
+ # The data included in the event payload.
662
+ # @return [String]
663
+ #
664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/EventPayload AWS API Documentation
665
+ #
666
+ class EventPayload < Struct.new(
667
+ :content_type,
668
+ :data)
669
+ SENSITIVE = []
670
+ include Aws::Structure
671
+ end
672
+
673
+ # Information about the commands that will be run on a Dev Environment
674
+ # when an SSH session begins.
675
+ #
676
+ # @!attribute [rw] command
677
+ # The command used at the beginning of the SSH session to a Dev
678
+ # Environment.
679
+ # @return [String]
680
+ #
681
+ # @!attribute [rw] arguments
682
+ # An array of arguments containing arguments and members.
683
+ # @return [Array<String>]
684
+ #
685
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ExecuteCommandSessionConfiguration AWS API Documentation
686
+ #
687
+ class ExecuteCommandSessionConfiguration < Struct.new(
688
+ :command,
689
+ :arguments)
690
+ SENSITIVE = []
691
+ include Aws::Structure
692
+ end
693
+
694
+ # @!attribute [rw] key
695
+ # @return [String]
696
+ #
697
+ # @!attribute [rw] values
698
+ # @return [Array<String>]
699
+ #
700
+ # @!attribute [rw] comparison_operator
701
+ # @return [String]
702
+ #
703
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/Filter AWS API Documentation
704
+ #
705
+ class Filter < Struct.new(
706
+ :key,
707
+ :values,
708
+ :comparison_operator)
709
+ SENSITIVE = []
710
+ include Aws::Structure
711
+ end
712
+
713
+ # @!attribute [rw] space_name
714
+ # The name of the space.
715
+ # @return [String]
716
+ #
717
+ # @!attribute [rw] project_name
718
+ # The name of the project in the space.
719
+ # @return [String]
720
+ #
721
+ # @!attribute [rw] id
722
+ # The system-generated unique ID of the Dev Environment for which you
723
+ # want to view information. To retrieve a list of Dev Environment IDs,
724
+ # use ListDevEnvironments.
725
+ # @return [String]
726
+ #
727
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetDevEnvironmentRequest AWS API Documentation
728
+ #
729
+ class GetDevEnvironmentRequest < Struct.new(
730
+ :space_name,
731
+ :project_name,
732
+ :id)
733
+ SENSITIVE = []
734
+ include Aws::Structure
735
+ end
736
+
737
+ # @!attribute [rw] space_name
738
+ # The name of the space.
739
+ # @return [String]
740
+ #
741
+ # @!attribute [rw] project_name
742
+ # The name of the project in the space.
743
+ # @return [String]
744
+ #
745
+ # @!attribute [rw] id
746
+ # The system-generated unique ID of the Dev Environment.
747
+ # @return [String]
748
+ #
749
+ # @!attribute [rw] last_updated_time
750
+ # The time when the Dev Environment was last updated, in coordinated
751
+ # universal time (UTC) timestamp format as specified in [RFC 3339][1].
752
+ #
753
+ #
754
+ #
755
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
756
+ # @return [Time]
757
+ #
758
+ # @!attribute [rw] creator_id
759
+ # The system-generated unique ID of the user who created the Dev
760
+ # Environment.
761
+ # @return [String]
762
+ #
763
+ # @!attribute [rw] status
764
+ # The current status of the Dev Environment.
765
+ # @return [String]
766
+ #
767
+ # @!attribute [rw] status_reason
768
+ # The reason for the status.
769
+ # @return [String]
770
+ #
771
+ # @!attribute [rw] repositories
772
+ # The source repository that contains the branch cloned into the Dev
773
+ # Environment.
774
+ # @return [Array<Types::DevEnvironmentRepositorySummary>]
775
+ #
776
+ # @!attribute [rw] alias
777
+ # The user-specified alias for the Dev Environment.
778
+ # @return [String]
779
+ #
780
+ # @!attribute [rw] ides
781
+ # Information about the integrated development environment (IDE)
782
+ # configured for the Dev Environment.
783
+ # @return [Array<Types::Ide>]
784
+ #
785
+ # @!attribute [rw] instance_type
786
+ # The Amazon EC2 instace type to use for the Dev Environment.
787
+ # @return [String]
788
+ #
789
+ # @!attribute [rw] inactivity_timeout_minutes
790
+ # The amount of time the Dev Environment will run without any activity
791
+ # detected before stopping, in minutes.
792
+ # @return [Integer]
793
+ #
794
+ # @!attribute [rw] persistent_storage
795
+ # Information about the amount of storage allocated to the Dev
796
+ # Environment. By default, a Dev Environment is configured to have
797
+ # 16GB of persistent storage.
798
+ # @return [Types::PersistentStorage]
799
+ #
800
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetDevEnvironmentResponse AWS API Documentation
801
+ #
802
+ class GetDevEnvironmentResponse < Struct.new(
803
+ :space_name,
804
+ :project_name,
805
+ :id,
806
+ :last_updated_time,
807
+ :creator_id,
808
+ :status,
809
+ :status_reason,
810
+ :repositories,
811
+ :alias,
812
+ :ides,
813
+ :instance_type,
814
+ :inactivity_timeout_minutes,
815
+ :persistent_storage)
816
+ SENSITIVE = []
817
+ include Aws::Structure
818
+ end
819
+
820
+ # @!attribute [rw] space_name
821
+ # The name of the space.
822
+ # @return [String]
823
+ #
824
+ # @!attribute [rw] name
825
+ # The name of the project in the space.
826
+ # @return [String]
827
+ #
828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetProjectRequest AWS API Documentation
829
+ #
830
+ class GetProjectRequest < Struct.new(
831
+ :space_name,
832
+ :name)
833
+ SENSITIVE = []
834
+ include Aws::Structure
835
+ end
836
+
837
+ # @!attribute [rw] space_name
838
+ # The name of the space.
839
+ # @return [String]
840
+ #
841
+ # @!attribute [rw] name
842
+ # The name of the project in the space.
843
+ # @return [String]
844
+ #
845
+ # @!attribute [rw] display_name
846
+ # The friendly name of the project displayed to users in Amazon
847
+ # CodeCatalyst.
848
+ # @return [String]
849
+ #
850
+ # @!attribute [rw] description
851
+ # The description of the project.
852
+ # @return [String]
853
+ #
854
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetProjectResponse AWS API Documentation
855
+ #
856
+ class GetProjectResponse < Struct.new(
857
+ :space_name,
858
+ :name,
859
+ :display_name,
860
+ :description)
861
+ SENSITIVE = []
862
+ include Aws::Structure
863
+ end
864
+
865
+ # @!attribute [rw] space_name
866
+ # The name of the space.
867
+ # @return [String]
868
+ #
869
+ # @!attribute [rw] project_name
870
+ # The name of the project in the space.
871
+ # @return [String]
872
+ #
873
+ # @!attribute [rw] source_repository_name
874
+ # The name of the source repository.
875
+ # @return [String]
876
+ #
877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSourceRepositoryCloneUrlsRequest AWS API Documentation
878
+ #
879
+ class GetSourceRepositoryCloneUrlsRequest < Struct.new(
880
+ :space_name,
881
+ :project_name,
882
+ :source_repository_name)
883
+ SENSITIVE = []
884
+ include Aws::Structure
885
+ end
886
+
887
+ # @!attribute [rw] https
888
+ # The HTTPS URL to use when cloning the source repository.
889
+ # @return [String]
890
+ #
891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSourceRepositoryCloneUrlsResponse AWS API Documentation
892
+ #
893
+ class GetSourceRepositoryCloneUrlsResponse < Struct.new(
894
+ :https)
895
+ SENSITIVE = []
896
+ include Aws::Structure
897
+ end
898
+
899
+ # @!attribute [rw] name
900
+ # The name of the space.
901
+ # @return [String]
902
+ #
903
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSpaceRequest AWS API Documentation
904
+ #
905
+ class GetSpaceRequest < Struct.new(
906
+ :name)
907
+ SENSITIVE = []
908
+ include Aws::Structure
909
+ end
910
+
911
+ # @!attribute [rw] name
912
+ # The name of the space.
913
+ # @return [String]
914
+ #
915
+ # @!attribute [rw] region_name
916
+ # The Amazon Web Services Region where the space exists.
917
+ # @return [String]
918
+ #
919
+ # @!attribute [rw] display_name
920
+ # The friendly name of the space displayed to users.
921
+ # @return [String]
922
+ #
923
+ # @!attribute [rw] description
924
+ # The description of the space.
925
+ # @return [String]
926
+ #
927
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSpaceResponse AWS API Documentation
928
+ #
929
+ class GetSpaceResponse < Struct.new(
930
+ :name,
931
+ :region_name,
932
+ :display_name,
933
+ :description)
934
+ SENSITIVE = []
935
+ include Aws::Structure
936
+ end
937
+
938
+ # @!attribute [rw] space_name
939
+ # The name of the space.
940
+ # @return [String]
941
+ #
942
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSubscriptionRequest AWS API Documentation
943
+ #
944
+ class GetSubscriptionRequest < Struct.new(
945
+ :space_name)
946
+ SENSITIVE = []
947
+ include Aws::Structure
948
+ end
949
+
950
+ # @!attribute [rw] subscription_type
951
+ # The type of the billing plan for the space.
952
+ # @return [String]
953
+ #
954
+ # @!attribute [rw] aws_account_name
955
+ # The display name of the Amazon Web Services account used for billing
956
+ # for the space.
957
+ # @return [String]
958
+ #
959
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetSubscriptionResponse AWS API Documentation
960
+ #
961
+ class GetSubscriptionResponse < Struct.new(
962
+ :subscription_type,
963
+ :aws_account_name)
964
+ SENSITIVE = []
965
+ include Aws::Structure
966
+ end
967
+
968
+ # @!attribute [rw] id
969
+ # The system-generated unique ID of the user.
970
+ # @return [String]
971
+ #
972
+ # @!attribute [rw] user_name
973
+ # The name of the user as displayed in Amazon CodeCatalyst.
974
+ # @return [String]
975
+ #
976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetUserDetailsRequest AWS API Documentation
977
+ #
978
+ class GetUserDetailsRequest < Struct.new(
979
+ :id,
980
+ :user_name)
981
+ SENSITIVE = []
982
+ include Aws::Structure
983
+ end
984
+
985
+ # @!attribute [rw] user_id
986
+ # The system-generated unique ID of the user.
987
+ # @return [String]
988
+ #
989
+ # @!attribute [rw] user_name
990
+ # The name of the user as displayed in Amazon CodeCatalyst.
991
+ # @return [String]
992
+ #
993
+ # @!attribute [rw] display_name
994
+ # The friendly name displayed for the user in Amazon CodeCatalyst.
995
+ # @return [String]
996
+ #
997
+ # @!attribute [rw] primary_email
998
+ # The email address provided by the user when they signed up.
999
+ # @return [Types::EmailAddress]
1000
+ #
1001
+ # @!attribute [rw] version
1002
+ # @return [String]
1003
+ #
1004
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/GetUserDetailsResponse AWS API Documentation
1005
+ #
1006
+ class GetUserDetailsResponse < Struct.new(
1007
+ :user_id,
1008
+ :user_name,
1009
+ :display_name,
1010
+ :primary_email,
1011
+ :version)
1012
+ SENSITIVE = []
1013
+ include Aws::Structure
1014
+ end
1015
+
1016
+ # Information about an integrated development environment (IDE) used in
1017
+ # a Dev Environment.
1018
+ #
1019
+ # @!attribute [rw] runtime
1020
+ # A link to the IDE runtime image.
1021
+ # @return [String]
1022
+ #
1023
+ # @!attribute [rw] name
1024
+ # The name of the IDE.
1025
+ # @return [String]
1026
+ #
1027
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/Ide AWS API Documentation
1028
+ #
1029
+ class Ide < Struct.new(
1030
+ :runtime,
1031
+ :name)
1032
+ SENSITIVE = []
1033
+ include Aws::Structure
1034
+ end
1035
+
1036
+ # Information about the configuration of an integrated development
1037
+ # environment (IDE) for a Dev Environment.
1038
+ #
1039
+ # @!attribute [rw] runtime
1040
+ # A link to the IDE runtime image.
1041
+ # @return [String]
1042
+ #
1043
+ # @!attribute [rw] name
1044
+ # The name of the IDE.
1045
+ # @return [String]
1046
+ #
1047
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/IdeConfiguration AWS API Documentation
1048
+ #
1049
+ class IdeConfiguration < Struct.new(
1050
+ :runtime,
1051
+ :name)
1052
+ SENSITIVE = []
1053
+ include Aws::Structure
1054
+ end
1055
+
1056
+ # @!attribute [rw] max_results
1057
+ # The maximum number of results to show in a single call to this API.
1058
+ # If the number of results is larger than the number you specified,
1059
+ # the response will include a `NextToken` element, which you can use
1060
+ # to obtain additional results.
1061
+ # @return [Integer]
1062
+ #
1063
+ # @!attribute [rw] next_token
1064
+ # A token returned from a call to this API to indicate the next batch
1065
+ # of results to return, if any.
1066
+ # @return [String]
1067
+ #
1068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListAccessTokensRequest AWS API Documentation
1069
+ #
1070
+ class ListAccessTokensRequest < Struct.new(
1071
+ :max_results,
1072
+ :next_token)
1073
+ SENSITIVE = []
1074
+ include Aws::Structure
1075
+ end
1076
+
1077
+ # @!attribute [rw] items
1078
+ # A list of personal access tokens (PATs) associated with the calling
1079
+ # user.
1080
+ # @return [Array<Types::AccessTokenSummary>]
1081
+ #
1082
+ # @!attribute [rw] next_token
1083
+ # A token returned from a call to this API to indicate the next batch
1084
+ # of results to return, if any.
1085
+ # @return [String]
1086
+ #
1087
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListAccessTokensResponse AWS API Documentation
1088
+ #
1089
+ class ListAccessTokensResponse < Struct.new(
1090
+ :items,
1091
+ :next_token)
1092
+ SENSITIVE = []
1093
+ include Aws::Structure
1094
+ end
1095
+
1096
+ # @!attribute [rw] space_name
1097
+ # The name of the space.
1098
+ # @return [String]
1099
+ #
1100
+ # @!attribute [rw] project_name
1101
+ # The name of the project in the space.
1102
+ # @return [String]
1103
+ #
1104
+ # @!attribute [rw] filters
1105
+ # Information about filters to apply to narrow the results returned in
1106
+ # the list.
1107
+ # @return [Array<Types::Filter>]
1108
+ #
1109
+ # @!attribute [rw] next_token
1110
+ # A token returned from a call to this API to indicate the next batch
1111
+ # of results to return, if any.
1112
+ # @return [String]
1113
+ #
1114
+ # @!attribute [rw] max_results
1115
+ # The maximum number of results to show in a single call to this API.
1116
+ # If the number of results is larger than the number you specified,
1117
+ # the response will include a `NextToken` element, which you can use
1118
+ # to obtain additional results.
1119
+ # @return [Integer]
1120
+ #
1121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListDevEnvironmentsRequest AWS API Documentation
1122
+ #
1123
+ class ListDevEnvironmentsRequest < Struct.new(
1124
+ :space_name,
1125
+ :project_name,
1126
+ :filters,
1127
+ :next_token,
1128
+ :max_results)
1129
+ SENSITIVE = []
1130
+ include Aws::Structure
1131
+ end
1132
+
1133
+ # @!attribute [rw] items
1134
+ # Information about the Dev Environments in a project.
1135
+ # @return [Array<Types::DevEnvironmentSummary>]
1136
+ #
1137
+ # @!attribute [rw] next_token
1138
+ # A token returned from a call to this API to indicate the next batch
1139
+ # of results to return, if any.
1140
+ # @return [String]
1141
+ #
1142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListDevEnvironmentsResponse AWS API Documentation
1143
+ #
1144
+ class ListDevEnvironmentsResponse < Struct.new(
1145
+ :items,
1146
+ :next_token)
1147
+ SENSITIVE = []
1148
+ include Aws::Structure
1149
+ end
1150
+
1151
+ # @!attribute [rw] space_name
1152
+ # The name of the space.
1153
+ # @return [String]
1154
+ #
1155
+ # @!attribute [rw] start_time
1156
+ # The date and time when you want to start retrieving events, in
1157
+ # coordinated universal time (UTC) timestamp format as specified in
1158
+ # [RFC 3339][1].
1159
+ #
1160
+ #
1161
+ #
1162
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
1163
+ # @return [Time]
1164
+ #
1165
+ # @!attribute [rw] end_time
1166
+ # The time after which you do not want any events retrieved, in
1167
+ # coordinated universal time (UTC) timestamp format as specified in
1168
+ # [RFC 3339][1].
1169
+ #
1170
+ #
1171
+ #
1172
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
1173
+ # @return [Time]
1174
+ #
1175
+ # @!attribute [rw] event_name
1176
+ # The name of the event.
1177
+ # @return [String]
1178
+ #
1179
+ # @!attribute [rw] next_token
1180
+ # A token returned from a call to this API to indicate the next batch
1181
+ # of results to return, if any.
1182
+ # @return [String]
1183
+ #
1184
+ # @!attribute [rw] max_results
1185
+ # The maximum number of results to show in a single call to this API.
1186
+ # If the number of results is larger than the number you specified,
1187
+ # the response will include a `NextToken` element, which you can use
1188
+ # to obtain additional results.
1189
+ # @return [Integer]
1190
+ #
1191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListEventLogsRequest AWS API Documentation
1192
+ #
1193
+ class ListEventLogsRequest < Struct.new(
1194
+ :space_name,
1195
+ :start_time,
1196
+ :end_time,
1197
+ :event_name,
1198
+ :next_token,
1199
+ :max_results)
1200
+ SENSITIVE = []
1201
+ include Aws::Structure
1202
+ end
1203
+
1204
+ # @!attribute [rw] next_token
1205
+ # A token returned from a call to this API to indicate the next batch
1206
+ # of results to return, if any.
1207
+ # @return [String]
1208
+ #
1209
+ # @!attribute [rw] items
1210
+ # Information about each event retrieved in the list.
1211
+ # @return [Array<Types::EventLogEntry>]
1212
+ #
1213
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListEventLogsResponse AWS API Documentation
1214
+ #
1215
+ class ListEventLogsResponse < Struct.new(
1216
+ :next_token,
1217
+ :items)
1218
+ SENSITIVE = []
1219
+ include Aws::Structure
1220
+ end
1221
+
1222
+ # @!attribute [rw] space_name
1223
+ # The name of the space.
1224
+ # @return [String]
1225
+ #
1226
+ # @!attribute [rw] next_token
1227
+ # A token returned from a call to this API to indicate the next batch
1228
+ # of results to return, if any.
1229
+ # @return [String]
1230
+ #
1231
+ # @!attribute [rw] max_results
1232
+ # The maximum number of results to show in a single call to this API.
1233
+ # If the number of results is larger than the number you specified,
1234
+ # the response will include a `NextToken` element, which you can use
1235
+ # to obtain additional results.
1236
+ # @return [Integer]
1237
+ #
1238
+ # @!attribute [rw] filters
1239
+ # Information about filters to apply to narrow the results returned in
1240
+ # the list.
1241
+ # @return [Array<Types::ProjectListFilter>]
1242
+ #
1243
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListProjectsRequest AWS API Documentation
1244
+ #
1245
+ class ListProjectsRequest < Struct.new(
1246
+ :space_name,
1247
+ :next_token,
1248
+ :max_results,
1249
+ :filters)
1250
+ SENSITIVE = []
1251
+ include Aws::Structure
1252
+ end
1253
+
1254
+ # @!attribute [rw] next_token
1255
+ # A token returned from a call to this API to indicate the next batch
1256
+ # of results to return, if any.
1257
+ # @return [String]
1258
+ #
1259
+ # @!attribute [rw] items
1260
+ # Information about the projects.
1261
+ # @return [Array<Types::ProjectSummary>]
1262
+ #
1263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListProjectsResponse AWS API Documentation
1264
+ #
1265
+ class ListProjectsResponse < Struct.new(
1266
+ :next_token,
1267
+ :items)
1268
+ SENSITIVE = []
1269
+ include Aws::Structure
1270
+ end
1271
+
1272
+ # Information about a source repository returned in a list of source
1273
+ # repositories.
1274
+ #
1275
+ # @!attribute [rw] id
1276
+ # The system-generated unique ID of the source repository.
1277
+ # @return [String]
1278
+ #
1279
+ # @!attribute [rw] name
1280
+ # The name of the source repository.
1281
+ # @return [String]
1282
+ #
1283
+ # @!attribute [rw] description
1284
+ # The description of the repository, if any.
1285
+ # @return [String]
1286
+ #
1287
+ # @!attribute [rw] last_updated_time
1288
+ # The time the source repository was last updated, in coordinated
1289
+ # universal time (UTC) timestamp format as specified in [RFC 3339][1].
1290
+ #
1291
+ #
1292
+ #
1293
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
1294
+ # @return [Time]
1295
+ #
1296
+ # @!attribute [rw] created_time
1297
+ # The time the source repository was created, in coordinated universal
1298
+ # time (UTC) timestamp format as specified in [RFC 3339][1].
1299
+ #
1300
+ #
1301
+ #
1302
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
1303
+ # @return [Time]
1304
+ #
1305
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSourceRepositoriesItem AWS API Documentation
1306
+ #
1307
+ class ListSourceRepositoriesItem < Struct.new(
1308
+ :id,
1309
+ :name,
1310
+ :description,
1311
+ :last_updated_time,
1312
+ :created_time)
1313
+ SENSITIVE = []
1314
+ include Aws::Structure
1315
+ end
1316
+
1317
+ # @!attribute [rw] space_name
1318
+ # The name of the space.
1319
+ # @return [String]
1320
+ #
1321
+ # @!attribute [rw] project_name
1322
+ # The name of the project in the space.
1323
+ # @return [String]
1324
+ #
1325
+ # @!attribute [rw] next_token
1326
+ # A token returned from a call to this API to indicate the next batch
1327
+ # of results to return, if any.
1328
+ # @return [String]
1329
+ #
1330
+ # @!attribute [rw] max_results
1331
+ # The maximum number of results to show in a single call to this API.
1332
+ # If the number of results is larger than the number you specified,
1333
+ # the response will include a `NextToken` element, which you can use
1334
+ # to obtain additional results.
1335
+ # @return [Integer]
1336
+ #
1337
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSourceRepositoriesRequest AWS API Documentation
1338
+ #
1339
+ class ListSourceRepositoriesRequest < Struct.new(
1340
+ :space_name,
1341
+ :project_name,
1342
+ :next_token,
1343
+ :max_results)
1344
+ SENSITIVE = []
1345
+ include Aws::Structure
1346
+ end
1347
+
1348
+ # @!attribute [rw] items
1349
+ # Information about the source repositories.
1350
+ # @return [Array<Types::ListSourceRepositoriesItem>]
1351
+ #
1352
+ # @!attribute [rw] next_token
1353
+ # A token returned from a call to this API to indicate the next batch
1354
+ # of results to return, if any.
1355
+ # @return [String]
1356
+ #
1357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSourceRepositoriesResponse AWS API Documentation
1358
+ #
1359
+ class ListSourceRepositoriesResponse < Struct.new(
1360
+ :items,
1361
+ :next_token)
1362
+ SENSITIVE = []
1363
+ include Aws::Structure
1364
+ end
1365
+
1366
+ # Information about a branch of a source repository returned in a list
1367
+ # of branches.
1368
+ #
1369
+ # @!attribute [rw] ref
1370
+ # The Git reference name of the branch.
1371
+ # @return [String]
1372
+ #
1373
+ # @!attribute [rw] name
1374
+ # The name of the branch.
1375
+ # @return [String]
1376
+ #
1377
+ # @!attribute [rw] last_updated_time
1378
+ # The time the branch was last updated, in coordinated universal time
1379
+ # (UTC) timestamp format as specified in [RFC 3339][1].
1380
+ #
1381
+ #
1382
+ #
1383
+ # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
1384
+ # @return [Time]
1385
+ #
1386
+ # @!attribute [rw] head_commit_id
1387
+ # The commit ID of the tip of the branch at the time of the request,
1388
+ # also known as the head commit.
1389
+ # @return [String]
1390
+ #
1391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSourceRepositoryBranchesItem AWS API Documentation
1392
+ #
1393
+ class ListSourceRepositoryBranchesItem < Struct.new(
1394
+ :ref,
1395
+ :name,
1396
+ :last_updated_time,
1397
+ :head_commit_id)
1398
+ SENSITIVE = []
1399
+ include Aws::Structure
1400
+ end
1401
+
1402
+ # @!attribute [rw] space_name
1403
+ # The name of the space.
1404
+ # @return [String]
1405
+ #
1406
+ # @!attribute [rw] project_name
1407
+ # The name of the project in the space.
1408
+ # @return [String]
1409
+ #
1410
+ # @!attribute [rw] source_repository_name
1411
+ # The name of the source repository.
1412
+ # @return [String]
1413
+ #
1414
+ # @!attribute [rw] next_token
1415
+ # A token returned from a call to this API to indicate the next batch
1416
+ # of results to return, if any.
1417
+ # @return [String]
1418
+ #
1419
+ # @!attribute [rw] max_results
1420
+ # The maximum number of results to show in a single call to this API.
1421
+ # If the number of results is larger than the number you specified,
1422
+ # the response will include a `NextToken` element, which you can use
1423
+ # to obtain additional results.
1424
+ # @return [Integer]
1425
+ #
1426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSourceRepositoryBranchesRequest AWS API Documentation
1427
+ #
1428
+ class ListSourceRepositoryBranchesRequest < Struct.new(
1429
+ :space_name,
1430
+ :project_name,
1431
+ :source_repository_name,
1432
+ :next_token,
1433
+ :max_results)
1434
+ SENSITIVE = []
1435
+ include Aws::Structure
1436
+ end
1437
+
1438
+ # @!attribute [rw] next_token
1439
+ # A token returned from a call to this API to indicate the next batch
1440
+ # of results to return, if any.
1441
+ # @return [String]
1442
+ #
1443
+ # @!attribute [rw] items
1444
+ # Information about the source branches.
1445
+ # @return [Array<Types::ListSourceRepositoryBranchesItem>]
1446
+ #
1447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSourceRepositoryBranchesResponse AWS API Documentation
1448
+ #
1449
+ class ListSourceRepositoryBranchesResponse < Struct.new(
1450
+ :next_token,
1451
+ :items)
1452
+ SENSITIVE = []
1453
+ include Aws::Structure
1454
+ end
1455
+
1456
+ # @!attribute [rw] next_token
1457
+ # A token returned from a call to this API to indicate the next batch
1458
+ # of results to return, if any.
1459
+ # @return [String]
1460
+ #
1461
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSpacesRequest AWS API Documentation
1462
+ #
1463
+ class ListSpacesRequest < Struct.new(
1464
+ :next_token)
1465
+ SENSITIVE = []
1466
+ include Aws::Structure
1467
+ end
1468
+
1469
+ # @!attribute [rw] next_token
1470
+ # A token returned from a call to this API to indicate the next batch
1471
+ # of results to return, if any.
1472
+ # @return [String]
1473
+ #
1474
+ # @!attribute [rw] items
1475
+ # Information about the space.
1476
+ # @return [Array<Types::SpaceSummary>]
1477
+ #
1478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ListSpacesResponse AWS API Documentation
1479
+ #
1480
+ class ListSpacesResponse < Struct.new(
1481
+ :next_token,
1482
+ :items)
1483
+ SENSITIVE = []
1484
+ include Aws::Structure
1485
+ end
1486
+
1487
+ # Information about the persistent storage for a Dev Environment.
1488
+ #
1489
+ # @!attribute [rw] size_in_gi_b
1490
+ # The size of the persistent storage in gigabytes (specifically GiB).
1491
+ #
1492
+ # <note markdown="1"> Valid values for storage are based on memory sizes in 16GB
1493
+ # increments. Valid values are 16, 32, and 64.
1494
+ #
1495
+ # </note>
1496
+ # @return [Integer]
1497
+ #
1498
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/PersistentStorage AWS API Documentation
1499
+ #
1500
+ class PersistentStorage < Struct.new(
1501
+ :size_in_gi_b)
1502
+ SENSITIVE = []
1503
+ include Aws::Structure
1504
+ end
1505
+
1506
+ # Information about the configuration of persistent storage for a Dev
1507
+ # Environment.
1508
+ #
1509
+ # @!attribute [rw] size_in_gi_b
1510
+ # The size of the persistent storage in gigabytes (specifically GiB).
1511
+ #
1512
+ # <note markdown="1"> Valid values for storage are based on memory sizes in 16GB
1513
+ # increments. Valid values are 16, 32, and 64.
1514
+ #
1515
+ # </note>
1516
+ # @return [Integer]
1517
+ #
1518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/PersistentStorageConfiguration AWS API Documentation
1519
+ #
1520
+ class PersistentStorageConfiguration < Struct.new(
1521
+ :size_in_gi_b)
1522
+ SENSITIVE = []
1523
+ include Aws::Structure
1524
+ end
1525
+
1526
+ # Information about a project in a space.
1527
+ #
1528
+ # @!attribute [rw] name
1529
+ # The name of the project in the space.
1530
+ # @return [String]
1531
+ #
1532
+ # @!attribute [rw] project_id
1533
+ # The system-generated unique ID of the project.
1534
+ # @return [String]
1535
+ #
1536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ProjectInformation AWS API Documentation
1537
+ #
1538
+ class ProjectInformation < Struct.new(
1539
+ :name,
1540
+ :project_id)
1541
+ SENSITIVE = []
1542
+ include Aws::Structure
1543
+ end
1544
+
1545
+ # nformation about the filter used to narrow the results returned in a
1546
+ # list of projects.
1547
+ #
1548
+ # @!attribute [rw] key
1549
+ # A key that can be used to sort results.
1550
+ # @return [String]
1551
+ #
1552
+ # @!attribute [rw] values
1553
+ # The value of the key.
1554
+ # @return [Array<String>]
1555
+ #
1556
+ # @!attribute [rw] comparison_operator
1557
+ # The operator used to compare the fields.
1558
+ # @return [String]
1559
+ #
1560
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ProjectListFilter AWS API Documentation
1561
+ #
1562
+ class ProjectListFilter < Struct.new(
1563
+ :key,
1564
+ :values,
1565
+ :comparison_operator)
1566
+ SENSITIVE = []
1567
+ include Aws::Structure
1568
+ end
1569
+
1570
+ # Information about a project.
1571
+ #
1572
+ # @!attribute [rw] name
1573
+ # The name of the project in the space.
1574
+ # @return [String]
1575
+ #
1576
+ # @!attribute [rw] display_name
1577
+ # The friendly name displayed to users of the project in Amazon
1578
+ # CodeCatalyst.
1579
+ # @return [String]
1580
+ #
1581
+ # @!attribute [rw] description
1582
+ # The description of the project.
1583
+ # @return [String]
1584
+ #
1585
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ProjectSummary AWS API Documentation
1586
+ #
1587
+ class ProjectSummary < Struct.new(
1588
+ :name,
1589
+ :display_name,
1590
+ :description)
1591
+ SENSITIVE = []
1592
+ include Aws::Structure
1593
+ end
1594
+
1595
+ # Information about a repository that will be cloned to a Dev
1596
+ # Environment.
1597
+ #
1598
+ # @!attribute [rw] repository_name
1599
+ # The name of the source repository.
1600
+ # @return [String]
1601
+ #
1602
+ # @!attribute [rw] branch_name
1603
+ # The name of the branch in a source repository.
1604
+ # @return [String]
1605
+ #
1606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/RepositoryInput AWS API Documentation
1607
+ #
1608
+ class RepositoryInput < Struct.new(
1609
+ :repository_name,
1610
+ :branch_name)
1611
+ SENSITIVE = []
1612
+ include Aws::Structure
1613
+ end
1614
+
1615
+ # The request was denied because the specified resource was not found.
1616
+ # Verify that the spelling is correct and that you have access to the
1617
+ # resource.
1618
+ #
1619
+ # @!attribute [rw] message
1620
+ # @return [String]
1621
+ #
1622
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ResourceNotFoundException AWS API Documentation
1623
+ #
1624
+ class ResourceNotFoundException < Struct.new(
1625
+ :message)
1626
+ SENSITIVE = []
1627
+ include Aws::Structure
1628
+ end
1629
+
1630
+ # The request was denied because one or more resources has reached its
1631
+ # limits for the tier the space belongs to. Either reduce the number of
1632
+ # resources, or change the tier if applicable.
1633
+ #
1634
+ # @!attribute [rw] message
1635
+ # @return [String]
1636
+ #
1637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ServiceQuotaExceededException AWS API Documentation
1638
+ #
1639
+ class ServiceQuotaExceededException < Struct.new(
1640
+ :message)
1641
+ SENSITIVE = []
1642
+ include Aws::Structure
1643
+ end
1644
+
1645
+ # Information about an space.
1646
+ #
1647
+ # @!attribute [rw] name
1648
+ # *We need to know what this is and the basic usage information so
1649
+ # that third-party developers know how to use this data type.*
1650
+ # @return [String]
1651
+ #
1652
+ # @!attribute [rw] region_name
1653
+ # The Amazon Web Services Region where the space exists.
1654
+ # @return [String]
1655
+ #
1656
+ # @!attribute [rw] display_name
1657
+ # The friendly name of the space displayed to users.
1658
+ # @return [String]
1659
+ #
1660
+ # @!attribute [rw] description
1661
+ # The description of the space.
1662
+ # @return [String]
1663
+ #
1664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/SpaceSummary AWS API Documentation
1665
+ #
1666
+ class SpaceSummary < Struct.new(
1667
+ :name,
1668
+ :region_name,
1669
+ :display_name,
1670
+ :description)
1671
+ SENSITIVE = []
1672
+ include Aws::Structure
1673
+ end
1674
+
1675
+ # @!attribute [rw] space_name
1676
+ # The name of the space.
1677
+ # @return [String]
1678
+ #
1679
+ # @!attribute [rw] project_name
1680
+ # The name of the project in the space.
1681
+ # @return [String]
1682
+ #
1683
+ # @!attribute [rw] id
1684
+ # The system-generated unique ID of the Dev Environment.
1685
+ # @return [String]
1686
+ #
1687
+ # @!attribute [rw] ides
1688
+ # Information about the integrated development environment (IDE)
1689
+ # configured for a Dev Environment.
1690
+ # @return [Array<Types::IdeConfiguration>]
1691
+ #
1692
+ # @!attribute [rw] instance_type
1693
+ # The Amazon EC2 instace type to use for the Dev Environment.
1694
+ # @return [String]
1695
+ #
1696
+ # @!attribute [rw] inactivity_timeout_minutes
1697
+ # The amount of time the Dev Environment will run without any activity
1698
+ # detected before stopping, in minutes. Only whole integers are
1699
+ # allowed. Dev Environments consume compute minutes when running.
1700
+ # @return [Integer]
1701
+ #
1702
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartDevEnvironmentRequest AWS API Documentation
1703
+ #
1704
+ class StartDevEnvironmentRequest < Struct.new(
1705
+ :space_name,
1706
+ :project_name,
1707
+ :id,
1708
+ :ides,
1709
+ :instance_type,
1710
+ :inactivity_timeout_minutes)
1711
+ SENSITIVE = []
1712
+ include Aws::Structure
1713
+ end
1714
+
1715
+ # @!attribute [rw] space_name
1716
+ # The name of the space.
1717
+ # @return [String]
1718
+ #
1719
+ # @!attribute [rw] project_name
1720
+ # The name of the project in the space.
1721
+ # @return [String]
1722
+ #
1723
+ # @!attribute [rw] id
1724
+ # The system-generated unique ID of the Dev Environment.
1725
+ # @return [String]
1726
+ #
1727
+ # @!attribute [rw] status
1728
+ # The status of the Dev Environment.
1729
+ # @return [String]
1730
+ #
1731
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartDevEnvironmentResponse AWS API Documentation
1732
+ #
1733
+ class StartDevEnvironmentResponse < Struct.new(
1734
+ :space_name,
1735
+ :project_name,
1736
+ :id,
1737
+ :status)
1738
+ SENSITIVE = []
1739
+ include Aws::Structure
1740
+ end
1741
+
1742
+ # @!attribute [rw] space_name
1743
+ # The name of the space.
1744
+ # @return [String]
1745
+ #
1746
+ # @!attribute [rw] project_name
1747
+ # The name of the project in the space.
1748
+ # @return [String]
1749
+ #
1750
+ # @!attribute [rw] id
1751
+ # The system-generated unique ID of the Dev Environment.
1752
+ # @return [String]
1753
+ #
1754
+ # @!attribute [rw] session_configuration
1755
+ # Information about the configuration of a Dev Environment session.
1756
+ # @return [Types::DevEnvironmentSessionConfiguration]
1757
+ #
1758
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartDevEnvironmentSessionRequest AWS API Documentation
1759
+ #
1760
+ class StartDevEnvironmentSessionRequest < Struct.new(
1761
+ :space_name,
1762
+ :project_name,
1763
+ :id,
1764
+ :session_configuration)
1765
+ SENSITIVE = []
1766
+ include Aws::Structure
1767
+ end
1768
+
1769
+ # @!attribute [rw] access_details
1770
+ # Information about connection details for a Dev Environment.
1771
+ # @return [Types::DevEnvironmentAccessDetails]
1772
+ #
1773
+ # @!attribute [rw] session_id
1774
+ # The system-generated unique ID of the Dev Environment session.
1775
+ # @return [String]
1776
+ #
1777
+ # @!attribute [rw] space_name
1778
+ # The name of the space.
1779
+ # @return [String]
1780
+ #
1781
+ # @!attribute [rw] project_name
1782
+ # The name of the project in the space.
1783
+ # @return [String]
1784
+ #
1785
+ # @!attribute [rw] id
1786
+ # The system-generated unique ID of the Dev Environment.
1787
+ # @return [String]
1788
+ #
1789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartDevEnvironmentSessionResponse AWS API Documentation
1790
+ #
1791
+ class StartDevEnvironmentSessionResponse < Struct.new(
1792
+ :access_details,
1793
+ :session_id,
1794
+ :space_name,
1795
+ :project_name,
1796
+ :id)
1797
+ SENSITIVE = [:access_details]
1798
+ include Aws::Structure
1799
+ end
1800
+
1801
+ # @!attribute [rw] space_name
1802
+ # The name of the space.
1803
+ # @return [String]
1804
+ #
1805
+ # @!attribute [rw] project_name
1806
+ # The name of the project in the space.
1807
+ # @return [String]
1808
+ #
1809
+ # @!attribute [rw] id
1810
+ # The system-generated unique ID of the Dev Environment.
1811
+ # @return [String]
1812
+ #
1813
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StopDevEnvironmentRequest AWS API Documentation
1814
+ #
1815
+ class StopDevEnvironmentRequest < Struct.new(
1816
+ :space_name,
1817
+ :project_name,
1818
+ :id)
1819
+ SENSITIVE = []
1820
+ include Aws::Structure
1821
+ end
1822
+
1823
+ # @!attribute [rw] space_name
1824
+ # The name of the space.
1825
+ # @return [String]
1826
+ #
1827
+ # @!attribute [rw] project_name
1828
+ # The name of the project in the space.
1829
+ # @return [String]
1830
+ #
1831
+ # @!attribute [rw] id
1832
+ # The system-generated unique ID of the Dev Environment.
1833
+ # @return [String]
1834
+ #
1835
+ # @!attribute [rw] status
1836
+ # The status of the Dev Environment.
1837
+ # @return [String]
1838
+ #
1839
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StopDevEnvironmentResponse AWS API Documentation
1840
+ #
1841
+ class StopDevEnvironmentResponse < Struct.new(
1842
+ :space_name,
1843
+ :project_name,
1844
+ :id,
1845
+ :status)
1846
+ SENSITIVE = []
1847
+ include Aws::Structure
1848
+ end
1849
+
1850
+ # The request was denied due to request throttling.
1851
+ #
1852
+ # @!attribute [rw] message
1853
+ # @return [String]
1854
+ #
1855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ThrottlingException AWS API Documentation
1856
+ #
1857
+ class ThrottlingException < Struct.new(
1858
+ :message)
1859
+ SENSITIVE = []
1860
+ include Aws::Structure
1861
+ end
1862
+
1863
+ # @!attribute [rw] space_name
1864
+ # The name of the space.
1865
+ # @return [String]
1866
+ #
1867
+ # @!attribute [rw] project_name
1868
+ # The name of the project in the space.
1869
+ # @return [String]
1870
+ #
1871
+ # @!attribute [rw] id
1872
+ # The system-generated unique ID of the Dev Environment.
1873
+ # @return [String]
1874
+ #
1875
+ # @!attribute [rw] alias
1876
+ # The user-specified alias for the Dev Environment. Changing this
1877
+ # value will not cause a restart.
1878
+ # @return [String]
1879
+ #
1880
+ # @!attribute [rw] ides
1881
+ # Information about the integrated development environment (IDE)
1882
+ # configured for a Dev Environment.
1883
+ # @return [Array<Types::IdeConfiguration>]
1884
+ #
1885
+ # @!attribute [rw] instance_type
1886
+ # The Amazon EC2 instace type to use for the Dev Environment.
1887
+ #
1888
+ # <note markdown="1"> Changing this value will cause a restart of the Dev Environment if
1889
+ # it is running.
1890
+ #
1891
+ # </note>
1892
+ # @return [String]
1893
+ #
1894
+ # @!attribute [rw] inactivity_timeout_minutes
1895
+ # The amount of time the Dev Environment will run without any activity
1896
+ # detected before stopping, in minutes. Only whole integers are
1897
+ # allowed. Dev Environments consume compute minutes when running.
1898
+ #
1899
+ # <note markdown="1"> Changing this value will cause a restart of the Dev Environment if
1900
+ # it is running.
1901
+ #
1902
+ # </note>
1903
+ # @return [Integer]
1904
+ #
1905
+ # @!attribute [rw] client_token
1906
+ # A user-specified idempotency token. Idempotency ensures that an API
1907
+ # request completes only once. With an idempotent request, if the
1908
+ # original request completes successfully, the subsequent retries
1909
+ # return the result from the original successful request and have no
1910
+ # additional effect.
1911
+ # @return [String]
1912
+ #
1913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/UpdateDevEnvironmentRequest AWS API Documentation
1914
+ #
1915
+ class UpdateDevEnvironmentRequest < Struct.new(
1916
+ :space_name,
1917
+ :project_name,
1918
+ :id,
1919
+ :alias,
1920
+ :ides,
1921
+ :instance_type,
1922
+ :inactivity_timeout_minutes,
1923
+ :client_token)
1924
+ SENSITIVE = []
1925
+ include Aws::Structure
1926
+ end
1927
+
1928
+ # @!attribute [rw] id
1929
+ # The system-generated unique ID of the Dev Environment.
1930
+ # @return [String]
1931
+ #
1932
+ # @!attribute [rw] space_name
1933
+ # The name of the space.
1934
+ # @return [String]
1935
+ #
1936
+ # @!attribute [rw] project_name
1937
+ # The name of the project in the space.
1938
+ # @return [String]
1939
+ #
1940
+ # @!attribute [rw] alias
1941
+ # The user-specified alias for the Dev Environment.
1942
+ # @return [String]
1943
+ #
1944
+ # @!attribute [rw] ides
1945
+ # Information about the integrated development environment (IDE)
1946
+ # configured for the Dev Environment.
1947
+ # @return [Array<Types::IdeConfiguration>]
1948
+ #
1949
+ # @!attribute [rw] instance_type
1950
+ # The Amazon EC2 instace type to use for the Dev Environment.
1951
+ # @return [String]
1952
+ #
1953
+ # @!attribute [rw] inactivity_timeout_minutes
1954
+ # The amount of time the Dev Environment will run without any activity
1955
+ # detected before stopping, in minutes.
1956
+ # @return [Integer]
1957
+ #
1958
+ # @!attribute [rw] client_token
1959
+ # A user-specified idempotency token. Idempotency ensures that an API
1960
+ # request completes only once. With an idempotent request, if the
1961
+ # original request completes successfully, the subsequent retries
1962
+ # return the result from the original successful request and have no
1963
+ # additional effect.
1964
+ # @return [String]
1965
+ #
1966
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/UpdateDevEnvironmentResponse AWS API Documentation
1967
+ #
1968
+ class UpdateDevEnvironmentResponse < Struct.new(
1969
+ :id,
1970
+ :space_name,
1971
+ :project_name,
1972
+ :alias,
1973
+ :ides,
1974
+ :instance_type,
1975
+ :inactivity_timeout_minutes,
1976
+ :client_token)
1977
+ SENSITIVE = []
1978
+ include Aws::Structure
1979
+ end
1980
+
1981
+ # Information about a user whose activity is recorded in an event for a
1982
+ # space.
1983
+ #
1984
+ # @!attribute [rw] user_type
1985
+ # The role assigned to the user in a Amazon CodeCatalyst space or
1986
+ # project when the event occurred.
1987
+ # @return [String]
1988
+ #
1989
+ # @!attribute [rw] principal_id
1990
+ # @return [String]
1991
+ #
1992
+ # @!attribute [rw] user_name
1993
+ # The display name of the user in Amazon CodeCatalyst.
1994
+ # @return [String]
1995
+ #
1996
+ # @!attribute [rw] aws_account_id
1997
+ # The Amazon Web Services account number of the user in Amazon Web
1998
+ # Services, if any.
1999
+ # @return [String]
2000
+ #
2001
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/UserIdentity AWS API Documentation
2002
+ #
2003
+ class UserIdentity < Struct.new(
2004
+ :user_type,
2005
+ :principal_id,
2006
+ :user_name,
2007
+ :aws_account_id)
2008
+ SENSITIVE = []
2009
+ include Aws::Structure
2010
+ end
2011
+
2012
+ # The request was denied because an input failed to satisfy the
2013
+ # constraints specified by the service. Check the spelling and input
2014
+ # requirements, and then try again.
2015
+ #
2016
+ # @!attribute [rw] message
2017
+ # @return [String]
2018
+ #
2019
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/ValidationException AWS API Documentation
2020
+ #
2021
+ class ValidationException < Struct.new(
2022
+ :message)
2023
+ SENSITIVE = []
2024
+ include Aws::Structure
2025
+ end
2026
+
2027
+ # @!attribute [rw] identity
2028
+ # The system-generated unique ID of the user in Amazon CodeCatalyst.
2029
+ # @return [String]
2030
+ #
2031
+ # @see http://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/VerifySessionResponse AWS API Documentation
2032
+ #
2033
+ class VerifySessionResponse < Struct.new(
2034
+ :identity)
2035
+ SENSITIVE = []
2036
+ include Aws::Structure
2037
+ end
2038
+
2039
+ end
2040
+ end