aws-sdk-appfabric 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1987 @@
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::AppFabric
11
+ module Types
12
+
13
+ # You are not authorized to perform this operation.
14
+ #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
18
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AccessDeniedException AWS API Documentation
19
+ #
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
25
+
26
+ # Contains API key credential information.
27
+ #
28
+ # @!attribute [rw] api_key
29
+ # An API key for an application.
30
+ # @return [String]
31
+ #
32
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ApiKeyCredential AWS API Documentation
33
+ #
34
+ class ApiKeyCredential < Struct.new(
35
+ :api_key)
36
+ SENSITIVE = [:api_key]
37
+ include Aws::Structure
38
+ end
39
+
40
+ # Contains information about an app authorization.
41
+ #
42
+ # @!attribute [rw] app_authorization_arn
43
+ # The Amazon Resource Name (ARN) of the app authorization.
44
+ # @return [String]
45
+ #
46
+ # @!attribute [rw] app_bundle_arn
47
+ # The Amazon Resource Name (ARN) of the app bundle for the app
48
+ # authorization.
49
+ # @return [String]
50
+ #
51
+ # @!attribute [rw] app
52
+ # The name of the application.
53
+ # @return [String]
54
+ #
55
+ # @!attribute [rw] tenant
56
+ # Contains information about an application tenant, such as the
57
+ # application display name and identifier.
58
+ # @return [Types::Tenant]
59
+ #
60
+ # @!attribute [rw] auth_type
61
+ # The authorization type.
62
+ # @return [String]
63
+ #
64
+ # @!attribute [rw] status
65
+ # The state of the app authorization.
66
+ #
67
+ # The following states are possible:
68
+ #
69
+ # * `PendingConnect`: The initial state of the app authorization. The
70
+ # app authorization is created but not yet connected.
71
+ #
72
+ # * `Connected`: The app authorization is connected to the
73
+ # application, and is ready to be used.
74
+ #
75
+ # * `ConnectionValidationFailed`: The app authorization received a
76
+ # validation exception when trying to connect to the application. If
77
+ # the app authorization is in this state, you should verify the
78
+ # configured credentials and try to connect the app authorization
79
+ # again.
80
+ #
81
+ # * `TokenAutoRotationFailed`: AppFabric failed to refresh the access
82
+ # token. If the app authorization is in this state, you should try
83
+ # to reconnect the app authorization.
84
+ # @return [String]
85
+ #
86
+ # @!attribute [rw] created_at
87
+ # The timestamp of when the app authorization was created.
88
+ # @return [Time]
89
+ #
90
+ # @!attribute [rw] updated_at
91
+ # The timestamp of when the app authorization was last updated.
92
+ # @return [Time]
93
+ #
94
+ # @!attribute [rw] persona
95
+ # The user persona of the app authorization.
96
+ #
97
+ # This field should always be `admin`.
98
+ # @return [String]
99
+ #
100
+ # @!attribute [rw] auth_url
101
+ # The application URL for the OAuth flow.
102
+ # @return [String]
103
+ #
104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AppAuthorization AWS API Documentation
105
+ #
106
+ class AppAuthorization < Struct.new(
107
+ :app_authorization_arn,
108
+ :app_bundle_arn,
109
+ :app,
110
+ :tenant,
111
+ :auth_type,
112
+ :status,
113
+ :created_at,
114
+ :updated_at,
115
+ :persona,
116
+ :auth_url)
117
+ SENSITIVE = []
118
+ include Aws::Structure
119
+ end
120
+
121
+ # Contains a summary of an app authorization.
122
+ #
123
+ # @!attribute [rw] app_authorization_arn
124
+ # The Amazon Resource Name (ARN) of the app authorization.
125
+ # @return [String]
126
+ #
127
+ # @!attribute [rw] app_bundle_arn
128
+ # The Amazon Resource Name (ARN) of the app bundle for the app
129
+ # authorization.
130
+ # @return [String]
131
+ #
132
+ # @!attribute [rw] app
133
+ # The name of the application.
134
+ # @return [String]
135
+ #
136
+ # @!attribute [rw] tenant
137
+ # Contains information about an application tenant, such as the
138
+ # application display name and identifier.
139
+ # @return [Types::Tenant]
140
+ #
141
+ # @!attribute [rw] status
142
+ # The state of the app authorization.
143
+ #
144
+ # The following states are possible:
145
+ #
146
+ # * `PendingConnect`: The initial state of the app authorization. The
147
+ # app authorization is created but not yet connected.
148
+ #
149
+ # * `Connected`: The app authorization is connected to the
150
+ # application, and is ready to be used.
151
+ #
152
+ # * `ConnectionValidationFailed`: The app authorization received a
153
+ # validation exception when trying to connect to the application. If
154
+ # the app authorization is in this state, you should verify the
155
+ # configured credentials and try to connect the app authorization
156
+ # again.
157
+ #
158
+ # * `TokenAutoRotationFailed`: AppFabric failed to refresh the access
159
+ # token. If the app authorization is in this state, you should try
160
+ # to reconnect the app authorization.
161
+ # @return [String]
162
+ #
163
+ # @!attribute [rw] updated_at
164
+ # Timestamp for when the app authorization was last updated.
165
+ # @return [Time]
166
+ #
167
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AppAuthorizationSummary AWS API Documentation
168
+ #
169
+ class AppAuthorizationSummary < Struct.new(
170
+ :app_authorization_arn,
171
+ :app_bundle_arn,
172
+ :app,
173
+ :tenant,
174
+ :status,
175
+ :updated_at)
176
+ SENSITIVE = []
177
+ include Aws::Structure
178
+ end
179
+
180
+ # Contains information about an app bundle.
181
+ #
182
+ # @!attribute [rw] arn
183
+ # The Amazon Resource Name (ARN) of the app bundle.
184
+ # @return [String]
185
+ #
186
+ # @!attribute [rw] customer_managed_key_arn
187
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
188
+ # key used to encrypt the application data.
189
+ # @return [String]
190
+ #
191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AppBundle AWS API Documentation
192
+ #
193
+ class AppBundle < Struct.new(
194
+ :arn,
195
+ :customer_managed_key_arn)
196
+ SENSITIVE = []
197
+ include Aws::Structure
198
+ end
199
+
200
+ # Contains a summary of an app bundle.
201
+ #
202
+ # @!attribute [rw] arn
203
+ # The Amazon Resource Name (ARN) of the app bundle.
204
+ # @return [String]
205
+ #
206
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AppBundleSummary AWS API Documentation
207
+ #
208
+ class AppBundleSummary < Struct.new(
209
+ :arn)
210
+ SENSITIVE = []
211
+ include Aws::Structure
212
+ end
213
+
214
+ # Contains information about an audit log destination configuration.
215
+ #
216
+ # @!attribute [rw] destination
217
+ # Contains information about an audit log destination.
218
+ # @return [Types::Destination]
219
+ #
220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AuditLogDestinationConfiguration AWS API Documentation
221
+ #
222
+ class AuditLogDestinationConfiguration < Struct.new(
223
+ :destination)
224
+ SENSITIVE = []
225
+ include Aws::Structure
226
+ end
227
+
228
+ # Contains information about an audit log processing configuration.
229
+ #
230
+ # @!attribute [rw] schema
231
+ # The event schema in which the audit logs need to be formatted.
232
+ # @return [String]
233
+ #
234
+ # @!attribute [rw] format
235
+ # The format in which the audit logs need to be formatted.
236
+ # @return [String]
237
+ #
238
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AuditLogProcessingConfiguration AWS API Documentation
239
+ #
240
+ class AuditLogProcessingConfiguration < Struct.new(
241
+ :schema,
242
+ :format)
243
+ SENSITIVE = []
244
+ include Aws::Structure
245
+ end
246
+
247
+ # Contains authorization request information, which is required for
248
+ # Amazon Web Services AppFabric to get the OAuth2 access token for an
249
+ # application.
250
+ #
251
+ # @!attribute [rw] redirect_uri
252
+ # The redirect URL that is specified in the AuthURL and the
253
+ # application client.
254
+ # @return [String]
255
+ #
256
+ # @!attribute [rw] code
257
+ # The authorization code returned by the application after permission
258
+ # is granted in the application OAuth page (after clicking on the
259
+ # AuthURL).
260
+ # @return [String]
261
+ #
262
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/AuthRequest AWS API Documentation
263
+ #
264
+ class AuthRequest < Struct.new(
265
+ :redirect_uri,
266
+ :code)
267
+ SENSITIVE = [:code]
268
+ include Aws::Structure
269
+ end
270
+
271
+ # @!attribute [rw] app_bundle_identifier
272
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
273
+ # of the app bundle to use for the request.
274
+ # @return [String]
275
+ #
276
+ # @!attribute [rw] task_id_list
277
+ # The tasks IDs to use for the request.
278
+ # @return [Array<String>]
279
+ #
280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/BatchGetUserAccessTasksRequest AWS API Documentation
281
+ #
282
+ class BatchGetUserAccessTasksRequest < Struct.new(
283
+ :app_bundle_identifier,
284
+ :task_id_list)
285
+ SENSITIVE = []
286
+ include Aws::Structure
287
+ end
288
+
289
+ # @!attribute [rw] user_access_results_list
290
+ # Contains a list of user access results.
291
+ # @return [Array<Types::UserAccessResultItem>]
292
+ #
293
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/BatchGetUserAccessTasksResponse AWS API Documentation
294
+ #
295
+ class BatchGetUserAccessTasksResponse < Struct.new(
296
+ :user_access_results_list)
297
+ SENSITIVE = []
298
+ include Aws::Structure
299
+ end
300
+
301
+ # The request has created a conflict. Check the request parameters and
302
+ # try again.
303
+ #
304
+ # @!attribute [rw] message
305
+ # @return [String]
306
+ #
307
+ # @!attribute [rw] resource_id
308
+ # The resource ID.
309
+ # @return [String]
310
+ #
311
+ # @!attribute [rw] resource_type
312
+ # The resource type.
313
+ # @return [String]
314
+ #
315
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ConflictException AWS API Documentation
316
+ #
317
+ class ConflictException < Struct.new(
318
+ :message,
319
+ :resource_id,
320
+ :resource_type)
321
+ SENSITIVE = []
322
+ include Aws::Structure
323
+ end
324
+
325
+ # @!attribute [rw] app_bundle_identifier
326
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
327
+ # of the app bundle that contains the app authorization to use for the
328
+ # request.
329
+ # @return [String]
330
+ #
331
+ # @!attribute [rw] app_authorization_identifier
332
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
333
+ # of the app authorization to use for the request.
334
+ # @return [String]
335
+ #
336
+ # @!attribute [rw] auth_request
337
+ # Contains OAuth2 authorization information.
338
+ #
339
+ # This is required if the app authorization for the request is
340
+ # configured with an OAuth2 (`oauth2`) authorization type.
341
+ # @return [Types::AuthRequest]
342
+ #
343
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ConnectAppAuthorizationRequest AWS API Documentation
344
+ #
345
+ class ConnectAppAuthorizationRequest < Struct.new(
346
+ :app_bundle_identifier,
347
+ :app_authorization_identifier,
348
+ :auth_request)
349
+ SENSITIVE = []
350
+ include Aws::Structure
351
+ end
352
+
353
+ # @!attribute [rw] app_authorization_summary
354
+ # Contains a summary of the app authorization.
355
+ # @return [Types::AppAuthorizationSummary]
356
+ #
357
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ConnectAppAuthorizationResponse AWS API Documentation
358
+ #
359
+ class ConnectAppAuthorizationResponse < Struct.new(
360
+ :app_authorization_summary)
361
+ SENSITIVE = []
362
+ include Aws::Structure
363
+ end
364
+
365
+ # @!attribute [rw] app_bundle_identifier
366
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
367
+ # of the app bundle to use for the request.
368
+ # @return [String]
369
+ #
370
+ # @!attribute [rw] app
371
+ # The name of the application.
372
+ #
373
+ # Valid values are:
374
+ #
375
+ # * `SLACK`
376
+ #
377
+ # * `ASANA`
378
+ #
379
+ # * `JIRA`
380
+ #
381
+ # * `M365`
382
+ #
383
+ # * `M365AUDITLOGS`
384
+ #
385
+ # * `ZOOM`
386
+ #
387
+ # * `ZENDESK`
388
+ #
389
+ # * `OKTA`
390
+ #
391
+ # * `GOOGLE`
392
+ #
393
+ # * `DROPBOX`
394
+ #
395
+ # * `SMARTSHEET`
396
+ #
397
+ # * `CISCO`
398
+ # @return [String]
399
+ #
400
+ # @!attribute [rw] credential
401
+ # Contains credentials for the application, such as an API key or
402
+ # OAuth2 client ID and secret.
403
+ #
404
+ # Specify credentials that match the authorization type for your
405
+ # request. For example, if the authorization type for your request is
406
+ # OAuth2 (`oauth2`), then you should provide only the OAuth2
407
+ # credentials.
408
+ # @return [Types::Credential]
409
+ #
410
+ # @!attribute [rw] tenant
411
+ # Contains information about an application tenant, such as the
412
+ # application display name and identifier.
413
+ # @return [Types::Tenant]
414
+ #
415
+ # @!attribute [rw] auth_type
416
+ # The authorization type for the app authorization.
417
+ # @return [String]
418
+ #
419
+ # @!attribute [rw] client_token
420
+ # Specifies a unique, case-sensitive identifier that you provide to
421
+ # ensure the idempotency of the request. This lets you safely retry
422
+ # the request without accidentally performing the same operation a
423
+ # second time. Passing the same value to a later call to an operation
424
+ # requires that you also pass the same value for all other parameters.
425
+ # We recommend that you use a [UUID type of value][1].
426
+ #
427
+ # If you don't provide this value, then Amazon Web Services generates
428
+ # a random one for you.
429
+ #
430
+ # If you retry the operation with the same `ClientToken`, but with
431
+ # different parameters, the retry fails with an
432
+ # `IdempotentParameterMismatch` error.
433
+ #
434
+ # **A suitable default value is auto-generated.** You should normally
435
+ # not need to pass this option.
436
+ #
437
+ #
438
+ #
439
+ # [1]: https://wikipedia.org/wiki/Universally_unique_identifier
440
+ # @return [String]
441
+ #
442
+ # @!attribute [rw] tags
443
+ # A map of the key-value pairs of the tag or tags to assign to the
444
+ # resource.
445
+ # @return [Array<Types::Tag>]
446
+ #
447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateAppAuthorizationRequest AWS API Documentation
448
+ #
449
+ class CreateAppAuthorizationRequest < Struct.new(
450
+ :app_bundle_identifier,
451
+ :app,
452
+ :credential,
453
+ :tenant,
454
+ :auth_type,
455
+ :client_token,
456
+ :tags)
457
+ SENSITIVE = []
458
+ include Aws::Structure
459
+ end
460
+
461
+ # @!attribute [rw] app_authorization
462
+ # Contains information about an app authorization.
463
+ # @return [Types::AppAuthorization]
464
+ #
465
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateAppAuthorizationResponse AWS API Documentation
466
+ #
467
+ class CreateAppAuthorizationResponse < Struct.new(
468
+ :app_authorization)
469
+ SENSITIVE = []
470
+ include Aws::Structure
471
+ end
472
+
473
+ # @!attribute [rw] client_token
474
+ # Specifies a unique, case-sensitive identifier that you provide to
475
+ # ensure the idempotency of the request. This lets you safely retry
476
+ # the request without accidentally performing the same operation a
477
+ # second time. Passing the same value to a later call to an operation
478
+ # requires that you also pass the same value for all other parameters.
479
+ # We recommend that you use a [UUID type of value][1].
480
+ #
481
+ # If you don't provide this value, then Amazon Web Services generates
482
+ # a random one for you.
483
+ #
484
+ # If you retry the operation with the same `ClientToken`, but with
485
+ # different parameters, the retry fails with an
486
+ # `IdempotentParameterMismatch` error.
487
+ #
488
+ # **A suitable default value is auto-generated.** You should normally
489
+ # not need to pass this option.
490
+ #
491
+ #
492
+ #
493
+ # [1]: https://wikipedia.org/wiki/Universally_unique_identifier
494
+ # @return [String]
495
+ #
496
+ # @!attribute [rw] customer_managed_key_identifier
497
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
498
+ # key to use to encrypt the application data. If this is not
499
+ # specified, an Amazon Web Services owned key is used for encryption.
500
+ # @return [String]
501
+ #
502
+ # @!attribute [rw] tags
503
+ # A map of the key-value pairs of the tag or tags to assign to the
504
+ # resource.
505
+ # @return [Array<Types::Tag>]
506
+ #
507
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateAppBundleRequest AWS API Documentation
508
+ #
509
+ class CreateAppBundleRequest < Struct.new(
510
+ :client_token,
511
+ :customer_managed_key_identifier,
512
+ :tags)
513
+ SENSITIVE = []
514
+ include Aws::Structure
515
+ end
516
+
517
+ # @!attribute [rw] app_bundle
518
+ # Contains information about an app bundle.
519
+ # @return [Types::AppBundle]
520
+ #
521
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateAppBundleResponse AWS API Documentation
522
+ #
523
+ class CreateAppBundleResponse < Struct.new(
524
+ :app_bundle)
525
+ SENSITIVE = []
526
+ include Aws::Structure
527
+ end
528
+
529
+ # @!attribute [rw] app_bundle_identifier
530
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
531
+ # of the app bundle to use for the request.
532
+ # @return [String]
533
+ #
534
+ # @!attribute [rw] ingestion_identifier
535
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
536
+ # of the ingestion to use for the request.
537
+ # @return [String]
538
+ #
539
+ # @!attribute [rw] processing_configuration
540
+ # Contains information about how ingested data is processed.
541
+ # @return [Types::ProcessingConfiguration]
542
+ #
543
+ # @!attribute [rw] destination_configuration
544
+ # Contains information about the destination of ingested data.
545
+ # @return [Types::DestinationConfiguration]
546
+ #
547
+ # @!attribute [rw] client_token
548
+ # Specifies a unique, case-sensitive identifier that you provide to
549
+ # ensure the idempotency of the request. This lets you safely retry
550
+ # the request without accidentally performing the same operation a
551
+ # second time. Passing the same value to a later call to an operation
552
+ # requires that you also pass the same value for all other parameters.
553
+ # We recommend that you use a [UUID type of value][1].
554
+ #
555
+ # If you don't provide this value, then Amazon Web Services generates
556
+ # a random one for you.
557
+ #
558
+ # If you retry the operation with the same `ClientToken`, but with
559
+ # different parameters, the retry fails with an
560
+ # `IdempotentParameterMismatch` error.
561
+ #
562
+ # **A suitable default value is auto-generated.** You should normally
563
+ # not need to pass this option.
564
+ #
565
+ #
566
+ #
567
+ # [1]: https://wikipedia.org/wiki/Universally_unique_identifier
568
+ # @return [String]
569
+ #
570
+ # @!attribute [rw] tags
571
+ # A map of the key-value pairs of the tag or tags to assign to the
572
+ # resource.
573
+ # @return [Array<Types::Tag>]
574
+ #
575
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateIngestionDestinationRequest AWS API Documentation
576
+ #
577
+ class CreateIngestionDestinationRequest < Struct.new(
578
+ :app_bundle_identifier,
579
+ :ingestion_identifier,
580
+ :processing_configuration,
581
+ :destination_configuration,
582
+ :client_token,
583
+ :tags)
584
+ SENSITIVE = []
585
+ include Aws::Structure
586
+ end
587
+
588
+ # @!attribute [rw] ingestion_destination
589
+ # Contains information about an ingestion destination.
590
+ # @return [Types::IngestionDestination]
591
+ #
592
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateIngestionDestinationResponse AWS API Documentation
593
+ #
594
+ class CreateIngestionDestinationResponse < Struct.new(
595
+ :ingestion_destination)
596
+ SENSITIVE = []
597
+ include Aws::Structure
598
+ end
599
+
600
+ # @!attribute [rw] app_bundle_identifier
601
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
602
+ # of the app bundle to use for the request.
603
+ # @return [String]
604
+ #
605
+ # @!attribute [rw] app
606
+ # The name of the application.
607
+ #
608
+ # Valid values are:
609
+ #
610
+ # * `SLACK`
611
+ #
612
+ # * `ASANA`
613
+ #
614
+ # * `JIRA`
615
+ #
616
+ # * `M365`
617
+ #
618
+ # * `M365AUDITLOGS`
619
+ #
620
+ # * `ZOOM`
621
+ #
622
+ # * `ZENDESK`
623
+ #
624
+ # * `OKTA`
625
+ #
626
+ # * `GOOGLE`
627
+ #
628
+ # * `DROPBOX`
629
+ #
630
+ # * `SMARTSHEET`
631
+ #
632
+ # * `CISCO`
633
+ # @return [String]
634
+ #
635
+ # @!attribute [rw] tenant_id
636
+ # The ID of the application tenant.
637
+ # @return [String]
638
+ #
639
+ # @!attribute [rw] ingestion_type
640
+ # The ingestion type.
641
+ # @return [String]
642
+ #
643
+ # @!attribute [rw] client_token
644
+ # Specifies a unique, case-sensitive identifier that you provide to
645
+ # ensure the idempotency of the request. This lets you safely retry
646
+ # the request without accidentally performing the same operation a
647
+ # second time. Passing the same value to a later call to an operation
648
+ # requires that you also pass the same value for all other parameters.
649
+ # We recommend that you use a [UUID type of value][1].
650
+ #
651
+ # If you don't provide this value, then Amazon Web Services generates
652
+ # a random one for you.
653
+ #
654
+ # If you retry the operation with the same `ClientToken`, but with
655
+ # different parameters, the retry fails with an
656
+ # `IdempotentParameterMismatch` error.
657
+ #
658
+ # **A suitable default value is auto-generated.** You should normally
659
+ # not need to pass this option.
660
+ #
661
+ #
662
+ #
663
+ # [1]: https://wikipedia.org/wiki/Universally_unique_identifier
664
+ # @return [String]
665
+ #
666
+ # @!attribute [rw] tags
667
+ # A map of the key-value pairs of the tag or tags to assign to the
668
+ # resource.
669
+ # @return [Array<Types::Tag>]
670
+ #
671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateIngestionRequest AWS API Documentation
672
+ #
673
+ class CreateIngestionRequest < Struct.new(
674
+ :app_bundle_identifier,
675
+ :app,
676
+ :tenant_id,
677
+ :ingestion_type,
678
+ :client_token,
679
+ :tags)
680
+ SENSITIVE = []
681
+ include Aws::Structure
682
+ end
683
+
684
+ # @!attribute [rw] ingestion
685
+ # Contains information about an ingestion.
686
+ # @return [Types::Ingestion]
687
+ #
688
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/CreateIngestionResponse AWS API Documentation
689
+ #
690
+ class CreateIngestionResponse < Struct.new(
691
+ :ingestion)
692
+ SENSITIVE = []
693
+ include Aws::Structure
694
+ end
695
+
696
+ # Contains credential information for an application.
697
+ #
698
+ # @note Credential is a union - when making an API calls you must set exactly one of the members.
699
+ #
700
+ # @!attribute [rw] oauth2_credential
701
+ # Contains OAuth2 client credential information.
702
+ # @return [Types::Oauth2Credential]
703
+ #
704
+ # @!attribute [rw] api_key_credential
705
+ # Contains API key credential information.
706
+ # @return [Types::ApiKeyCredential]
707
+ #
708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/Credential AWS API Documentation
709
+ #
710
+ class Credential < Struct.new(
711
+ :oauth2_credential,
712
+ :api_key_credential,
713
+ :unknown)
714
+ SENSITIVE = []
715
+ include Aws::Structure
716
+ include Aws::Structure::Union
717
+
718
+ class Oauth2Credential < Credential; end
719
+ class ApiKeyCredential < Credential; end
720
+ class Unknown < Credential; end
721
+ end
722
+
723
+ # @!attribute [rw] app_bundle_identifier
724
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
725
+ # of the app bundle to use for the request.
726
+ # @return [String]
727
+ #
728
+ # @!attribute [rw] app_authorization_identifier
729
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
730
+ # of the app authorization to use for the request.
731
+ # @return [String]
732
+ #
733
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteAppAuthorizationRequest AWS API Documentation
734
+ #
735
+ class DeleteAppAuthorizationRequest < Struct.new(
736
+ :app_bundle_identifier,
737
+ :app_authorization_identifier)
738
+ SENSITIVE = []
739
+ include Aws::Structure
740
+ end
741
+
742
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteAppAuthorizationResponse AWS API Documentation
743
+ #
744
+ class DeleteAppAuthorizationResponse < Aws::EmptyStructure; end
745
+
746
+ # @!attribute [rw] app_bundle_identifier
747
+ # The ID or Amazon Resource Name (ARN) of the app bundle that needs to
748
+ # be deleted.
749
+ # @return [String]
750
+ #
751
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteAppBundleRequest AWS API Documentation
752
+ #
753
+ class DeleteAppBundleRequest < Struct.new(
754
+ :app_bundle_identifier)
755
+ SENSITIVE = []
756
+ include Aws::Structure
757
+ end
758
+
759
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteAppBundleResponse AWS API Documentation
760
+ #
761
+ class DeleteAppBundleResponse < Aws::EmptyStructure; end
762
+
763
+ # @!attribute [rw] app_bundle_identifier
764
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
765
+ # of the app bundle to use for the request.
766
+ # @return [String]
767
+ #
768
+ # @!attribute [rw] ingestion_identifier
769
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
770
+ # of the ingestion to use for the request.
771
+ # @return [String]
772
+ #
773
+ # @!attribute [rw] ingestion_destination_identifier
774
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
775
+ # of the ingestion destination to use for the request.
776
+ # @return [String]
777
+ #
778
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteIngestionDestinationRequest AWS API Documentation
779
+ #
780
+ class DeleteIngestionDestinationRequest < Struct.new(
781
+ :app_bundle_identifier,
782
+ :ingestion_identifier,
783
+ :ingestion_destination_identifier)
784
+ SENSITIVE = []
785
+ include Aws::Structure
786
+ end
787
+
788
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteIngestionDestinationResponse AWS API Documentation
789
+ #
790
+ class DeleteIngestionDestinationResponse < Aws::EmptyStructure; end
791
+
792
+ # @!attribute [rw] app_bundle_identifier
793
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
794
+ # of the app bundle to use for the request.
795
+ # @return [String]
796
+ #
797
+ # @!attribute [rw] ingestion_identifier
798
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
799
+ # of the ingestion to use for the request.
800
+ # @return [String]
801
+ #
802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteIngestionRequest AWS API Documentation
803
+ #
804
+ class DeleteIngestionRequest < Struct.new(
805
+ :app_bundle_identifier,
806
+ :ingestion_identifier)
807
+ SENSITIVE = []
808
+ include Aws::Structure
809
+ end
810
+
811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DeleteIngestionResponse AWS API Documentation
812
+ #
813
+ class DeleteIngestionResponse < Aws::EmptyStructure; end
814
+
815
+ # Contains information about an audit log destination.
816
+ #
817
+ # @note Destination is a union - when making an API calls you must set exactly one of the members.
818
+ #
819
+ # @note Destination is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Destination corresponding to the set member.
820
+ #
821
+ # @!attribute [rw] s3_bucket
822
+ # Contains information about an Amazon S3 bucket.
823
+ # @return [Types::S3Bucket]
824
+ #
825
+ # @!attribute [rw] firehose_stream
826
+ # Contains information about an Amazon Kinesis Data Firehose delivery
827
+ # stream.
828
+ # @return [Types::FirehoseStream]
829
+ #
830
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/Destination AWS API Documentation
831
+ #
832
+ class Destination < Struct.new(
833
+ :s3_bucket,
834
+ :firehose_stream,
835
+ :unknown)
836
+ SENSITIVE = []
837
+ include Aws::Structure
838
+ include Aws::Structure::Union
839
+
840
+ class S3Bucket < Destination; end
841
+ class FirehoseStream < Destination; end
842
+ class Unknown < Destination; end
843
+ end
844
+
845
+ # Contains information about the destination of ingested data.
846
+ #
847
+ # @note DestinationConfiguration is a union - when making an API calls you must set exactly one of the members.
848
+ #
849
+ # @note DestinationConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DestinationConfiguration corresponding to the set member.
850
+ #
851
+ # @!attribute [rw] audit_log
852
+ # Contains information about an audit log destination configuration.
853
+ # @return [Types::AuditLogDestinationConfiguration]
854
+ #
855
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/DestinationConfiguration AWS API Documentation
856
+ #
857
+ class DestinationConfiguration < Struct.new(
858
+ :audit_log,
859
+ :unknown)
860
+ SENSITIVE = []
861
+ include Aws::Structure
862
+ include Aws::Structure::Union
863
+
864
+ class AuditLog < DestinationConfiguration; end
865
+ class Unknown < DestinationConfiguration; end
866
+ end
867
+
868
+ # Contains information about an Amazon Kinesis Data Firehose delivery
869
+ # stream.
870
+ #
871
+ # @!attribute [rw] stream_name
872
+ # The name of the Amazon Kinesis Data Firehose delivery stream.
873
+ # @return [String]
874
+ #
875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/FirehoseStream AWS API Documentation
876
+ #
877
+ class FirehoseStream < Struct.new(
878
+ :stream_name)
879
+ SENSITIVE = []
880
+ include Aws::Structure
881
+ end
882
+
883
+ # @!attribute [rw] app_bundle_identifier
884
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
885
+ # of the app bundle to use for the request.
886
+ # @return [String]
887
+ #
888
+ # @!attribute [rw] app_authorization_identifier
889
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
890
+ # of the app authorization to use for the request.
891
+ # @return [String]
892
+ #
893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetAppAuthorizationRequest AWS API Documentation
894
+ #
895
+ class GetAppAuthorizationRequest < Struct.new(
896
+ :app_bundle_identifier,
897
+ :app_authorization_identifier)
898
+ SENSITIVE = []
899
+ include Aws::Structure
900
+ end
901
+
902
+ # @!attribute [rw] app_authorization
903
+ # Contains information about an app authorization.
904
+ # @return [Types::AppAuthorization]
905
+ #
906
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetAppAuthorizationResponse AWS API Documentation
907
+ #
908
+ class GetAppAuthorizationResponse < Struct.new(
909
+ :app_authorization)
910
+ SENSITIVE = []
911
+ include Aws::Structure
912
+ end
913
+
914
+ # @!attribute [rw] app_bundle_identifier
915
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
916
+ # of the app bundle to use for the request.
917
+ # @return [String]
918
+ #
919
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetAppBundleRequest AWS API Documentation
920
+ #
921
+ class GetAppBundleRequest < Struct.new(
922
+ :app_bundle_identifier)
923
+ SENSITIVE = []
924
+ include Aws::Structure
925
+ end
926
+
927
+ # @!attribute [rw] app_bundle
928
+ # Contains information about an app bundle.
929
+ # @return [Types::AppBundle]
930
+ #
931
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetAppBundleResponse AWS API Documentation
932
+ #
933
+ class GetAppBundleResponse < Struct.new(
934
+ :app_bundle)
935
+ SENSITIVE = []
936
+ include Aws::Structure
937
+ end
938
+
939
+ # @!attribute [rw] app_bundle_identifier
940
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
941
+ # of the app bundle to use for the request.
942
+ # @return [String]
943
+ #
944
+ # @!attribute [rw] ingestion_identifier
945
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
946
+ # of the ingestion to use for the request.
947
+ # @return [String]
948
+ #
949
+ # @!attribute [rw] ingestion_destination_identifier
950
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
951
+ # of the ingestion destination to use for the request.
952
+ # @return [String]
953
+ #
954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetIngestionDestinationRequest AWS API Documentation
955
+ #
956
+ class GetIngestionDestinationRequest < Struct.new(
957
+ :app_bundle_identifier,
958
+ :ingestion_identifier,
959
+ :ingestion_destination_identifier)
960
+ SENSITIVE = []
961
+ include Aws::Structure
962
+ end
963
+
964
+ # @!attribute [rw] ingestion_destination
965
+ # Contains information about an ingestion destination.
966
+ # @return [Types::IngestionDestination]
967
+ #
968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetIngestionDestinationResponse AWS API Documentation
969
+ #
970
+ class GetIngestionDestinationResponse < Struct.new(
971
+ :ingestion_destination)
972
+ SENSITIVE = []
973
+ include Aws::Structure
974
+ end
975
+
976
+ # @!attribute [rw] app_bundle_identifier
977
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
978
+ # of the app bundle to use for the request.
979
+ # @return [String]
980
+ #
981
+ # @!attribute [rw] ingestion_identifier
982
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
983
+ # of the ingestion to use for the request.
984
+ # @return [String]
985
+ #
986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetIngestionRequest AWS API Documentation
987
+ #
988
+ class GetIngestionRequest < Struct.new(
989
+ :app_bundle_identifier,
990
+ :ingestion_identifier)
991
+ SENSITIVE = []
992
+ include Aws::Structure
993
+ end
994
+
995
+ # @!attribute [rw] ingestion
996
+ # Contains information about an ingestion.
997
+ # @return [Types::Ingestion]
998
+ #
999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/GetIngestionResponse AWS API Documentation
1000
+ #
1001
+ class GetIngestionResponse < Struct.new(
1002
+ :ingestion)
1003
+ SENSITIVE = []
1004
+ include Aws::Structure
1005
+ end
1006
+
1007
+ # Contains information about an ingestion.
1008
+ #
1009
+ # @!attribute [rw] arn
1010
+ # The Amazon Resource Name (ARN) of the ingestion.
1011
+ # @return [String]
1012
+ #
1013
+ # @!attribute [rw] app_bundle_arn
1014
+ # The Amazon Resource Name (ARN) of the app bundle for the ingestion.
1015
+ # @return [String]
1016
+ #
1017
+ # @!attribute [rw] app
1018
+ # The name of the application.
1019
+ # @return [String]
1020
+ #
1021
+ # @!attribute [rw] tenant_id
1022
+ # The ID of the application tenant.
1023
+ # @return [String]
1024
+ #
1025
+ # @!attribute [rw] created_at
1026
+ # The timestamp of when the ingestion was created.
1027
+ # @return [Time]
1028
+ #
1029
+ # @!attribute [rw] updated_at
1030
+ # The timestamp of when the ingestion was last updated.
1031
+ # @return [Time]
1032
+ #
1033
+ # @!attribute [rw] state
1034
+ # The status of the ingestion.
1035
+ # @return [String]
1036
+ #
1037
+ # @!attribute [rw] ingestion_type
1038
+ # The type of the ingestion.
1039
+ # @return [String]
1040
+ #
1041
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/Ingestion AWS API Documentation
1042
+ #
1043
+ class Ingestion < Struct.new(
1044
+ :arn,
1045
+ :app_bundle_arn,
1046
+ :app,
1047
+ :tenant_id,
1048
+ :created_at,
1049
+ :updated_at,
1050
+ :state,
1051
+ :ingestion_type)
1052
+ SENSITIVE = []
1053
+ include Aws::Structure
1054
+ end
1055
+
1056
+ # Contains information about an ingestion destination.
1057
+ #
1058
+ # @!attribute [rw] arn
1059
+ # The Amazon Resource Name (ARN) of the ingestion destination.
1060
+ # @return [String]
1061
+ #
1062
+ # @!attribute [rw] ingestion_arn
1063
+ # The Amazon Resource Name (ARN) of the ingestion.
1064
+ # @return [String]
1065
+ #
1066
+ # @!attribute [rw] processing_configuration
1067
+ # Contains information about how ingested data is processed.
1068
+ # @return [Types::ProcessingConfiguration]
1069
+ #
1070
+ # @!attribute [rw] destination_configuration
1071
+ # Contains information about the destination of ingested data.
1072
+ # @return [Types::DestinationConfiguration]
1073
+ #
1074
+ # @!attribute [rw] status
1075
+ # The state of the ingestion destination.
1076
+ #
1077
+ # The following states are possible:
1078
+ #
1079
+ # * `Active`: The ingestion destination is active and is ready to be
1080
+ # used.
1081
+ #
1082
+ # * `Failed`: The ingestion destination has failed. If the ingestion
1083
+ # destination is in this state, you should verify the ingestion
1084
+ # destination configuration and try again.
1085
+ # @return [String]
1086
+ #
1087
+ # @!attribute [rw] status_reason
1088
+ # The reason for the current status of the ingestion destination.
1089
+ #
1090
+ # Only present when the `status` of ingestion destination is `Failed`.
1091
+ # @return [String]
1092
+ #
1093
+ # @!attribute [rw] created_at
1094
+ # The timestamp of when the ingestion destination was created.
1095
+ # @return [Time]
1096
+ #
1097
+ # @!attribute [rw] updated_at
1098
+ # The timestamp of when the ingestion destination was last updated.
1099
+ # @return [Time]
1100
+ #
1101
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/IngestionDestination AWS API Documentation
1102
+ #
1103
+ class IngestionDestination < Struct.new(
1104
+ :arn,
1105
+ :ingestion_arn,
1106
+ :processing_configuration,
1107
+ :destination_configuration,
1108
+ :status,
1109
+ :status_reason,
1110
+ :created_at,
1111
+ :updated_at)
1112
+ SENSITIVE = []
1113
+ include Aws::Structure
1114
+ end
1115
+
1116
+ # Contains a summary of an ingestion destination.
1117
+ #
1118
+ # @!attribute [rw] arn
1119
+ # The Amazon Resource Name (ARN) of the ingestion destination.
1120
+ # @return [String]
1121
+ #
1122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/IngestionDestinationSummary AWS API Documentation
1123
+ #
1124
+ class IngestionDestinationSummary < Struct.new(
1125
+ :arn)
1126
+ SENSITIVE = []
1127
+ include Aws::Structure
1128
+ end
1129
+
1130
+ # Contains a summary of an ingestion.
1131
+ #
1132
+ # @!attribute [rw] arn
1133
+ # The Amazon Resource Name (ARN) of the ingestion.
1134
+ # @return [String]
1135
+ #
1136
+ # @!attribute [rw] app
1137
+ # The name of the application.
1138
+ # @return [String]
1139
+ #
1140
+ # @!attribute [rw] tenant_id
1141
+ # The ID of the application tenant.
1142
+ # @return [String]
1143
+ #
1144
+ # @!attribute [rw] state
1145
+ # The status of the ingestion.
1146
+ # @return [String]
1147
+ #
1148
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/IngestionSummary AWS API Documentation
1149
+ #
1150
+ class IngestionSummary < Struct.new(
1151
+ :arn,
1152
+ :app,
1153
+ :tenant_id,
1154
+ :state)
1155
+ SENSITIVE = []
1156
+ include Aws::Structure
1157
+ end
1158
+
1159
+ # The request processing has failed because of an unknown error,
1160
+ # exception, or failure with an internal server.
1161
+ #
1162
+ # @!attribute [rw] message
1163
+ # @return [String]
1164
+ #
1165
+ # @!attribute [rw] retry_after_seconds
1166
+ # The period of time after which you should retry your request.
1167
+ # @return [Integer]
1168
+ #
1169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/InternalServerException AWS API Documentation
1170
+ #
1171
+ class InternalServerException < Struct.new(
1172
+ :message,
1173
+ :retry_after_seconds)
1174
+ SENSITIVE = []
1175
+ include Aws::Structure
1176
+ end
1177
+
1178
+ # @!attribute [rw] app_bundle_identifier
1179
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1180
+ # of the app bundle to use for the request.
1181
+ # @return [String]
1182
+ #
1183
+ # @!attribute [rw] max_results
1184
+ # The maximum number of results that are returned per call. You can
1185
+ # use `nextToken` to obtain further pages of results.
1186
+ #
1187
+ # This is only an upper limit. The actual number of results returned
1188
+ # per call might be fewer than the specified maximum.
1189
+ # @return [Integer]
1190
+ #
1191
+ # @!attribute [rw] next_token
1192
+ # If `nextToken` is returned, there are more results available. The
1193
+ # value of `nextToken` is a unique pagination token for each page.
1194
+ # Make the call again using the returned token to retrieve the next
1195
+ # page. Keep all other arguments unchanged. Each pagination token
1196
+ # expires after 24 hours. Using an expired pagination token will
1197
+ # return an *HTTP 400 InvalidToken error*.
1198
+ # @return [String]
1199
+ #
1200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListAppAuthorizationsRequest AWS API Documentation
1201
+ #
1202
+ class ListAppAuthorizationsRequest < Struct.new(
1203
+ :app_bundle_identifier,
1204
+ :max_results,
1205
+ :next_token)
1206
+ SENSITIVE = []
1207
+ include Aws::Structure
1208
+ end
1209
+
1210
+ # @!attribute [rw] app_authorization_summary_list
1211
+ # Contains a list of app authorization summaries.
1212
+ # @return [Array<Types::AppAuthorizationSummary>]
1213
+ #
1214
+ # @!attribute [rw] next_token
1215
+ # If `nextToken` is returned, there are more results available. The
1216
+ # value of `nextToken` is a unique pagination token for each page.
1217
+ # Make the call again using the returned token to retrieve the next
1218
+ # page. Keep all other arguments unchanged. Each pagination token
1219
+ # expires after 24 hours. Using an expired pagination token will
1220
+ # return an *HTTP 400 InvalidToken error*.
1221
+ # @return [String]
1222
+ #
1223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListAppAuthorizationsResponse AWS API Documentation
1224
+ #
1225
+ class ListAppAuthorizationsResponse < Struct.new(
1226
+ :app_authorization_summary_list,
1227
+ :next_token)
1228
+ SENSITIVE = []
1229
+ include Aws::Structure
1230
+ end
1231
+
1232
+ # @!attribute [rw] max_results
1233
+ # The maximum number of results that are returned per call. You can
1234
+ # use `nextToken` to obtain further pages of results.
1235
+ #
1236
+ # This is only an upper limit. The actual number of results returned
1237
+ # per call might be fewer than the specified maximum.
1238
+ # @return [Integer]
1239
+ #
1240
+ # @!attribute [rw] next_token
1241
+ # If `nextToken` is returned, there are more results available. The
1242
+ # value of `nextToken` is a unique pagination token for each page.
1243
+ # Make the call again using the returned token to retrieve the next
1244
+ # page. Keep all other arguments unchanged. Each pagination token
1245
+ # expires after 24 hours. Using an expired pagination token will
1246
+ # return an *HTTP 400 InvalidToken error*.
1247
+ # @return [String]
1248
+ #
1249
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListAppBundlesRequest AWS API Documentation
1250
+ #
1251
+ class ListAppBundlesRequest < Struct.new(
1252
+ :max_results,
1253
+ :next_token)
1254
+ SENSITIVE = []
1255
+ include Aws::Structure
1256
+ end
1257
+
1258
+ # @!attribute [rw] app_bundle_summary_list
1259
+ # Contains a list of app bundle summaries.
1260
+ # @return [Array<Types::AppBundleSummary>]
1261
+ #
1262
+ # @!attribute [rw] next_token
1263
+ # If `nextToken` is returned, there are more results available. The
1264
+ # value of `nextToken` is a unique pagination token for each page.
1265
+ # Make the call again using the returned token to retrieve the next
1266
+ # page. Keep all other arguments unchanged. Each pagination token
1267
+ # expires after 24 hours. Using an expired pagination token will
1268
+ # return an *HTTP 400 InvalidToken error*.
1269
+ # @return [String]
1270
+ #
1271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListAppBundlesResponse AWS API Documentation
1272
+ #
1273
+ class ListAppBundlesResponse < Struct.new(
1274
+ :app_bundle_summary_list,
1275
+ :next_token)
1276
+ SENSITIVE = []
1277
+ include Aws::Structure
1278
+ end
1279
+
1280
+ # @!attribute [rw] app_bundle_identifier
1281
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1282
+ # of the app bundle to use for the request.
1283
+ # @return [String]
1284
+ #
1285
+ # @!attribute [rw] ingestion_identifier
1286
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1287
+ # of the ingestion to use for the request.
1288
+ # @return [String]
1289
+ #
1290
+ # @!attribute [rw] max_results
1291
+ # The maximum number of results that are returned per call. You can
1292
+ # use `nextToken` to obtain further pages of results.
1293
+ #
1294
+ # This is only an upper limit. The actual number of results returned
1295
+ # per call might be fewer than the specified maximum.
1296
+ # @return [Integer]
1297
+ #
1298
+ # @!attribute [rw] next_token
1299
+ # If `nextToken` is returned, there are more results available. The
1300
+ # value of `nextToken` is a unique pagination token for each page.
1301
+ # Make the call again using the returned token to retrieve the next
1302
+ # page. Keep all other arguments unchanged. Each pagination token
1303
+ # expires after 24 hours. Using an expired pagination token will
1304
+ # return an *HTTP 400 InvalidToken error*.
1305
+ # @return [String]
1306
+ #
1307
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListIngestionDestinationsRequest AWS API Documentation
1308
+ #
1309
+ class ListIngestionDestinationsRequest < Struct.new(
1310
+ :app_bundle_identifier,
1311
+ :ingestion_identifier,
1312
+ :max_results,
1313
+ :next_token)
1314
+ SENSITIVE = []
1315
+ include Aws::Structure
1316
+ end
1317
+
1318
+ # @!attribute [rw] ingestion_destinations
1319
+ # Contains a list of ingestion destination summaries.
1320
+ # @return [Array<Types::IngestionDestinationSummary>]
1321
+ #
1322
+ # @!attribute [rw] next_token
1323
+ # If `nextToken` is returned, there are more results available. The
1324
+ # value of `nextToken` is a unique pagination token for each page.
1325
+ # Make the call again using the returned token to retrieve the next
1326
+ # page. Keep all other arguments unchanged. Each pagination token
1327
+ # expires after 24 hours. Using an expired pagination token will
1328
+ # return an *HTTP 400 InvalidToken error*.
1329
+ # @return [String]
1330
+ #
1331
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListIngestionDestinationsResponse AWS API Documentation
1332
+ #
1333
+ class ListIngestionDestinationsResponse < Struct.new(
1334
+ :ingestion_destinations,
1335
+ :next_token)
1336
+ SENSITIVE = []
1337
+ include Aws::Structure
1338
+ end
1339
+
1340
+ # @!attribute [rw] app_bundle_identifier
1341
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1342
+ # of the app bundle to use for the request.
1343
+ # @return [String]
1344
+ #
1345
+ # @!attribute [rw] max_results
1346
+ # The maximum number of results that are returned per call. You can
1347
+ # use `nextToken` to obtain further pages of results.
1348
+ #
1349
+ # This is only an upper limit. The actual number of results returned
1350
+ # per call might be fewer than the specified maximum.
1351
+ # @return [Integer]
1352
+ #
1353
+ # @!attribute [rw] next_token
1354
+ # If `nextToken` is returned, there are more results available. The
1355
+ # value of `nextToken` is a unique pagination token for each page.
1356
+ # Make the call again using the returned token to retrieve the next
1357
+ # page. Keep all other arguments unchanged. Each pagination token
1358
+ # expires after 24 hours. Using an expired pagination token will
1359
+ # return an *HTTP 400 InvalidToken error*.
1360
+ # @return [String]
1361
+ #
1362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListIngestionsRequest AWS API Documentation
1363
+ #
1364
+ class ListIngestionsRequest < Struct.new(
1365
+ :app_bundle_identifier,
1366
+ :max_results,
1367
+ :next_token)
1368
+ SENSITIVE = []
1369
+ include Aws::Structure
1370
+ end
1371
+
1372
+ # @!attribute [rw] ingestions
1373
+ # Contains a list of ingestion summaries.
1374
+ # @return [Array<Types::IngestionSummary>]
1375
+ #
1376
+ # @!attribute [rw] next_token
1377
+ # If `nextToken` is returned, there are more results available. The
1378
+ # value of `nextToken` is a unique pagination token for each page.
1379
+ # Make the call again using the returned token to retrieve the next
1380
+ # page. Keep all other arguments unchanged. Each pagination token
1381
+ # expires after 24 hours. Using an expired pagination token will
1382
+ # return an *HTTP 400 InvalidToken error*.
1383
+ # @return [String]
1384
+ #
1385
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListIngestionsResponse AWS API Documentation
1386
+ #
1387
+ class ListIngestionsResponse < Struct.new(
1388
+ :ingestions,
1389
+ :next_token)
1390
+ SENSITIVE = []
1391
+ include Aws::Structure
1392
+ end
1393
+
1394
+ # @!attribute [rw] resource_arn
1395
+ # The Amazon Resource Name (ARN) of the resource for which you want to
1396
+ # retrieve tags.
1397
+ # @return [String]
1398
+ #
1399
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListTagsForResourceRequest AWS API Documentation
1400
+ #
1401
+ class ListTagsForResourceRequest < Struct.new(
1402
+ :resource_arn)
1403
+ SENSITIVE = []
1404
+ include Aws::Structure
1405
+ end
1406
+
1407
+ # @!attribute [rw] tags
1408
+ # A map of the key-value pairs for the tag or tags assigned to the
1409
+ # specified resource.
1410
+ # @return [Array<Types::Tag>]
1411
+ #
1412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ListTagsForResourceResponse AWS API Documentation
1413
+ #
1414
+ class ListTagsForResourceResponse < Struct.new(
1415
+ :tags)
1416
+ SENSITIVE = []
1417
+ include Aws::Structure
1418
+ end
1419
+
1420
+ # Contains OAuth2 client credential information.
1421
+ #
1422
+ # @!attribute [rw] client_id
1423
+ # The client ID of the client application.
1424
+ # @return [String]
1425
+ #
1426
+ # @!attribute [rw] client_secret
1427
+ # The client secret of the client application.
1428
+ # @return [String]
1429
+ #
1430
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/Oauth2Credential AWS API Documentation
1431
+ #
1432
+ class Oauth2Credential < Struct.new(
1433
+ :client_id,
1434
+ :client_secret)
1435
+ SENSITIVE = [:client_secret]
1436
+ include Aws::Structure
1437
+ end
1438
+
1439
+ # Contains information about how ingested data is processed.
1440
+ #
1441
+ # @note ProcessingConfiguration is a union - when making an API calls you must set exactly one of the members.
1442
+ #
1443
+ # @note ProcessingConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProcessingConfiguration corresponding to the set member.
1444
+ #
1445
+ # @!attribute [rw] audit_log
1446
+ # Contains information about an audit log processing configuration.
1447
+ # @return [Types::AuditLogProcessingConfiguration]
1448
+ #
1449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ProcessingConfiguration AWS API Documentation
1450
+ #
1451
+ class ProcessingConfiguration < Struct.new(
1452
+ :audit_log,
1453
+ :unknown)
1454
+ SENSITIVE = []
1455
+ include Aws::Structure
1456
+ include Aws::Structure::Union
1457
+
1458
+ class AuditLog < ProcessingConfiguration; end
1459
+ class Unknown < ProcessingConfiguration; end
1460
+ end
1461
+
1462
+ # The specified resource does not exist.
1463
+ #
1464
+ # @!attribute [rw] message
1465
+ # @return [String]
1466
+ #
1467
+ # @!attribute [rw] resource_id
1468
+ # The resource ID.
1469
+ # @return [String]
1470
+ #
1471
+ # @!attribute [rw] resource_type
1472
+ # The resource type.
1473
+ # @return [String]
1474
+ #
1475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ResourceNotFoundException AWS API Documentation
1476
+ #
1477
+ class ResourceNotFoundException < Struct.new(
1478
+ :message,
1479
+ :resource_id,
1480
+ :resource_type)
1481
+ SENSITIVE = []
1482
+ include Aws::Structure
1483
+ end
1484
+
1485
+ # Contains information about an Amazon S3 bucket.
1486
+ #
1487
+ # @!attribute [rw] bucket_name
1488
+ # The name of the Amazon S3 bucket.
1489
+ # @return [String]
1490
+ #
1491
+ # @!attribute [rw] prefix
1492
+ # The object key to use.
1493
+ # @return [String]
1494
+ #
1495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/S3Bucket AWS API Documentation
1496
+ #
1497
+ class S3Bucket < Struct.new(
1498
+ :bucket_name,
1499
+ :prefix)
1500
+ SENSITIVE = []
1501
+ include Aws::Structure
1502
+ end
1503
+
1504
+ # The request exceeds a service quota.
1505
+ #
1506
+ # @!attribute [rw] message
1507
+ # @return [String]
1508
+ #
1509
+ # @!attribute [rw] resource_id
1510
+ # The resource ID.
1511
+ # @return [String]
1512
+ #
1513
+ # @!attribute [rw] resource_type
1514
+ # The resource type.
1515
+ # @return [String]
1516
+ #
1517
+ # @!attribute [rw] service_code
1518
+ # The code of the service.
1519
+ # @return [String]
1520
+ #
1521
+ # @!attribute [rw] quota_code
1522
+ # The code for the quota exceeded.
1523
+ # @return [String]
1524
+ #
1525
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ServiceQuotaExceededException AWS API Documentation
1526
+ #
1527
+ class ServiceQuotaExceededException < Struct.new(
1528
+ :message,
1529
+ :resource_id,
1530
+ :resource_type,
1531
+ :service_code,
1532
+ :quota_code)
1533
+ SENSITIVE = []
1534
+ include Aws::Structure
1535
+ end
1536
+
1537
+ # @!attribute [rw] ingestion_identifier
1538
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1539
+ # of the ingestion to use for the request.
1540
+ # @return [String]
1541
+ #
1542
+ # @!attribute [rw] app_bundle_identifier
1543
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1544
+ # of the app bundle to use for the request.
1545
+ # @return [String]
1546
+ #
1547
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StartIngestionRequest AWS API Documentation
1548
+ #
1549
+ class StartIngestionRequest < Struct.new(
1550
+ :ingestion_identifier,
1551
+ :app_bundle_identifier)
1552
+ SENSITIVE = []
1553
+ include Aws::Structure
1554
+ end
1555
+
1556
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StartIngestionResponse AWS API Documentation
1557
+ #
1558
+ class StartIngestionResponse < Aws::EmptyStructure; end
1559
+
1560
+ # @!attribute [rw] app_bundle_identifier
1561
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1562
+ # of the app bundle to use for the request.
1563
+ # @return [String]
1564
+ #
1565
+ # @!attribute [rw] email
1566
+ # The email address of the target user.
1567
+ # @return [String]
1568
+ #
1569
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StartUserAccessTasksRequest AWS API Documentation
1570
+ #
1571
+ class StartUserAccessTasksRequest < Struct.new(
1572
+ :app_bundle_identifier,
1573
+ :email)
1574
+ SENSITIVE = [:email]
1575
+ include Aws::Structure
1576
+ end
1577
+
1578
+ # @!attribute [rw] user_access_tasks_list
1579
+ # Contains a list of user access task information.
1580
+ # @return [Array<Types::UserAccessTaskItem>]
1581
+ #
1582
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StartUserAccessTasksResponse AWS API Documentation
1583
+ #
1584
+ class StartUserAccessTasksResponse < Struct.new(
1585
+ :user_access_tasks_list)
1586
+ SENSITIVE = []
1587
+ include Aws::Structure
1588
+ end
1589
+
1590
+ # @!attribute [rw] ingestion_identifier
1591
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1592
+ # of the ingestion to use for the request.
1593
+ # @return [String]
1594
+ #
1595
+ # @!attribute [rw] app_bundle_identifier
1596
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1597
+ # of the app bundle to use for the request.
1598
+ # @return [String]
1599
+ #
1600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StopIngestionRequest AWS API Documentation
1601
+ #
1602
+ class StopIngestionRequest < Struct.new(
1603
+ :ingestion_identifier,
1604
+ :app_bundle_identifier)
1605
+ SENSITIVE = []
1606
+ include Aws::Structure
1607
+ end
1608
+
1609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/StopIngestionResponse AWS API Documentation
1610
+ #
1611
+ class StopIngestionResponse < Aws::EmptyStructure; end
1612
+
1613
+ # The key or keys of the key-value pairs for the tag or tags assigned to
1614
+ # a resource.
1615
+ #
1616
+ # @!attribute [rw] key
1617
+ # Tag key.
1618
+ # @return [String]
1619
+ #
1620
+ # @!attribute [rw] value
1621
+ # Tag value.
1622
+ # @return [String]
1623
+ #
1624
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/Tag AWS API Documentation
1625
+ #
1626
+ class Tag < Struct.new(
1627
+ :key,
1628
+ :value)
1629
+ SENSITIVE = []
1630
+ include Aws::Structure
1631
+ end
1632
+
1633
+ # @!attribute [rw] resource_arn
1634
+ # The Amazon Resource Name (ARN) of the resource that you want to tag.
1635
+ # @return [String]
1636
+ #
1637
+ # @!attribute [rw] tags
1638
+ # A map of the key-value pairs of the tag or tags to assign to the
1639
+ # resource.
1640
+ # @return [Array<Types::Tag>]
1641
+ #
1642
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/TagResourceRequest AWS API Documentation
1643
+ #
1644
+ class TagResourceRequest < Struct.new(
1645
+ :resource_arn,
1646
+ :tags)
1647
+ SENSITIVE = []
1648
+ include Aws::Structure
1649
+ end
1650
+
1651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/TagResourceResponse AWS API Documentation
1652
+ #
1653
+ class TagResourceResponse < Aws::EmptyStructure; end
1654
+
1655
+ # Contains information about an error returned from a user access task.
1656
+ #
1657
+ # @!attribute [rw] error_code
1658
+ # The code of the error.
1659
+ # @return [String]
1660
+ #
1661
+ # @!attribute [rw] error_message
1662
+ # The message of the error.
1663
+ # @return [String]
1664
+ #
1665
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/TaskError AWS API Documentation
1666
+ #
1667
+ class TaskError < Struct.new(
1668
+ :error_code,
1669
+ :error_message)
1670
+ SENSITIVE = []
1671
+ include Aws::Structure
1672
+ end
1673
+
1674
+ # Contains information about an application tenant.
1675
+ #
1676
+ # @!attribute [rw] tenant_identifier
1677
+ # The ID of the application tenant.
1678
+ # @return [String]
1679
+ #
1680
+ # @!attribute [rw] tenant_display_name
1681
+ # The display name of the tenant.
1682
+ # @return [String]
1683
+ #
1684
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/Tenant AWS API Documentation
1685
+ #
1686
+ class Tenant < Struct.new(
1687
+ :tenant_identifier,
1688
+ :tenant_display_name)
1689
+ SENSITIVE = []
1690
+ include Aws::Structure
1691
+ end
1692
+
1693
+ # The request rate exceeds the limit.
1694
+ #
1695
+ # @!attribute [rw] message
1696
+ # @return [String]
1697
+ #
1698
+ # @!attribute [rw] service_code
1699
+ # The code of the service.
1700
+ # @return [String]
1701
+ #
1702
+ # @!attribute [rw] quota_code
1703
+ # The code for the quota exceeded.
1704
+ # @return [String]
1705
+ #
1706
+ # @!attribute [rw] retry_after_seconds
1707
+ # The period of time after which you should retry your request.
1708
+ # @return [Integer]
1709
+ #
1710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ThrottlingException AWS API Documentation
1711
+ #
1712
+ class ThrottlingException < Struct.new(
1713
+ :message,
1714
+ :service_code,
1715
+ :quota_code,
1716
+ :retry_after_seconds)
1717
+ SENSITIVE = []
1718
+ include Aws::Structure
1719
+ end
1720
+
1721
+ # @!attribute [rw] resource_arn
1722
+ # The Amazon Resource Name (ARN) of the resource that you want to
1723
+ # untag.
1724
+ # @return [String]
1725
+ #
1726
+ # @!attribute [rw] tag_keys
1727
+ # The keys of the key-value pairs for the tag or tags you want to
1728
+ # remove from the specified resource.
1729
+ # @return [Array<String>]
1730
+ #
1731
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UntagResourceRequest AWS API Documentation
1732
+ #
1733
+ class UntagResourceRequest < Struct.new(
1734
+ :resource_arn,
1735
+ :tag_keys)
1736
+ SENSITIVE = []
1737
+ include Aws::Structure
1738
+ end
1739
+
1740
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UntagResourceResponse AWS API Documentation
1741
+ #
1742
+ class UntagResourceResponse < Aws::EmptyStructure; end
1743
+
1744
+ # @!attribute [rw] app_bundle_identifier
1745
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1746
+ # of the app bundle to use for the request.
1747
+ # @return [String]
1748
+ #
1749
+ # @!attribute [rw] app_authorization_identifier
1750
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1751
+ # of the app authorization to use for the request.
1752
+ # @return [String]
1753
+ #
1754
+ # @!attribute [rw] credential
1755
+ # Contains credentials for the application, such as an API key or
1756
+ # OAuth2 client ID and secret.
1757
+ #
1758
+ # Specify credentials that match the authorization type of the app
1759
+ # authorization to update. For example, if the authorization type of
1760
+ # the app authorization is OAuth2 (`oauth2`), then you should provide
1761
+ # only the OAuth2 credentials.
1762
+ # @return [Types::Credential]
1763
+ #
1764
+ # @!attribute [rw] tenant
1765
+ # Contains information about an application tenant, such as the
1766
+ # application display name and identifier.
1767
+ # @return [Types::Tenant]
1768
+ #
1769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UpdateAppAuthorizationRequest AWS API Documentation
1770
+ #
1771
+ class UpdateAppAuthorizationRequest < Struct.new(
1772
+ :app_bundle_identifier,
1773
+ :app_authorization_identifier,
1774
+ :credential,
1775
+ :tenant)
1776
+ SENSITIVE = []
1777
+ include Aws::Structure
1778
+ end
1779
+
1780
+ # @!attribute [rw] app_authorization
1781
+ # Contains information about an app authorization.
1782
+ # @return [Types::AppAuthorization]
1783
+ #
1784
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UpdateAppAuthorizationResponse AWS API Documentation
1785
+ #
1786
+ class UpdateAppAuthorizationResponse < Struct.new(
1787
+ :app_authorization)
1788
+ SENSITIVE = []
1789
+ include Aws::Structure
1790
+ end
1791
+
1792
+ # @!attribute [rw] app_bundle_identifier
1793
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1794
+ # of the app bundle to use for the request.
1795
+ # @return [String]
1796
+ #
1797
+ # @!attribute [rw] ingestion_identifier
1798
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1799
+ # of the ingestion to use for the request.
1800
+ # @return [String]
1801
+ #
1802
+ # @!attribute [rw] ingestion_destination_identifier
1803
+ # The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID)
1804
+ # of the ingestion destination to use for the request.
1805
+ # @return [String]
1806
+ #
1807
+ # @!attribute [rw] destination_configuration
1808
+ # Contains information about the destination of ingested data.
1809
+ # @return [Types::DestinationConfiguration]
1810
+ #
1811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UpdateIngestionDestinationRequest AWS API Documentation
1812
+ #
1813
+ class UpdateIngestionDestinationRequest < Struct.new(
1814
+ :app_bundle_identifier,
1815
+ :ingestion_identifier,
1816
+ :ingestion_destination_identifier,
1817
+ :destination_configuration)
1818
+ SENSITIVE = []
1819
+ include Aws::Structure
1820
+ end
1821
+
1822
+ # @!attribute [rw] ingestion_destination
1823
+ # Contains information about an ingestion destination.
1824
+ # @return [Types::IngestionDestination]
1825
+ #
1826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UpdateIngestionDestinationResponse AWS API Documentation
1827
+ #
1828
+ class UpdateIngestionDestinationResponse < Struct.new(
1829
+ :ingestion_destination)
1830
+ SENSITIVE = []
1831
+ include Aws::Structure
1832
+ end
1833
+
1834
+ # Contains information about a user's access to an application.
1835
+ #
1836
+ # @!attribute [rw] app
1837
+ # The name of the application.
1838
+ # @return [String]
1839
+ #
1840
+ # @!attribute [rw] tenant_id
1841
+ # The ID of the application tenant.
1842
+ # @return [String]
1843
+ #
1844
+ # @!attribute [rw] tenant_display_name
1845
+ # The display name of the tenant.
1846
+ # @return [String]
1847
+ #
1848
+ # @!attribute [rw] task_id
1849
+ # The unique ID of the task.
1850
+ # @return [String]
1851
+ #
1852
+ # @!attribute [rw] result_status
1853
+ # The status of the user access result item.
1854
+ #
1855
+ # The following states are possible:
1856
+ #
1857
+ # * `IN_PROGRESS`: The user access task is in progress.
1858
+ #
1859
+ # * `COMPLETED`: The user access task completed successfully.
1860
+ #
1861
+ # * `FAILED`: The user access task failed.
1862
+ #
1863
+ # * `EXPIRED`: The user access task expired.
1864
+ # @return [String]
1865
+ #
1866
+ # @!attribute [rw] email
1867
+ # The email address of the target user.
1868
+ # @return [String]
1869
+ #
1870
+ # @!attribute [rw] user_id
1871
+ # The unique ID of user.
1872
+ # @return [String]
1873
+ #
1874
+ # @!attribute [rw] user_full_name
1875
+ # The full name of the user.
1876
+ # @return [String]
1877
+ #
1878
+ # @!attribute [rw] user_first_name
1879
+ # The first name of the user.
1880
+ # @return [String]
1881
+ #
1882
+ # @!attribute [rw] user_last_name
1883
+ # The last name of the user.
1884
+ # @return [String]
1885
+ #
1886
+ # @!attribute [rw] user_status
1887
+ # The status of the user returned by the application.
1888
+ # @return [String]
1889
+ #
1890
+ # @!attribute [rw] task_error
1891
+ # Contains information about an error returned from a user access
1892
+ # task.
1893
+ # @return [Types::TaskError]
1894
+ #
1895
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UserAccessResultItem AWS API Documentation
1896
+ #
1897
+ class UserAccessResultItem < Struct.new(
1898
+ :app,
1899
+ :tenant_id,
1900
+ :tenant_display_name,
1901
+ :task_id,
1902
+ :result_status,
1903
+ :email,
1904
+ :user_id,
1905
+ :user_full_name,
1906
+ :user_first_name,
1907
+ :user_last_name,
1908
+ :user_status,
1909
+ :task_error)
1910
+ SENSITIVE = [:email, :user_id, :user_full_name, :user_first_name, :user_last_name]
1911
+ include Aws::Structure
1912
+ end
1913
+
1914
+ # Contains information about a user access task.
1915
+ #
1916
+ # @!attribute [rw] app
1917
+ # The name of the application.
1918
+ # @return [String]
1919
+ #
1920
+ # @!attribute [rw] tenant_id
1921
+ # The ID of the application tenant.
1922
+ # @return [String]
1923
+ #
1924
+ # @!attribute [rw] task_id
1925
+ # The unique ID of the task.
1926
+ # @return [String]
1927
+ #
1928
+ # @!attribute [rw] error
1929
+ # Error from the task, if any.
1930
+ # @return [Types::TaskError]
1931
+ #
1932
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/UserAccessTaskItem AWS API Documentation
1933
+ #
1934
+ class UserAccessTaskItem < Struct.new(
1935
+ :app,
1936
+ :tenant_id,
1937
+ :task_id,
1938
+ :error)
1939
+ SENSITIVE = []
1940
+ include Aws::Structure
1941
+ end
1942
+
1943
+ # The request has invalid or missing parameters.
1944
+ #
1945
+ # @!attribute [rw] message
1946
+ # @return [String]
1947
+ #
1948
+ # @!attribute [rw] reason
1949
+ # The reason for the exception.
1950
+ # @return [String]
1951
+ #
1952
+ # @!attribute [rw] field_list
1953
+ # The field list.
1954
+ # @return [Array<Types::ValidationExceptionField>]
1955
+ #
1956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ValidationException AWS API Documentation
1957
+ #
1958
+ class ValidationException < Struct.new(
1959
+ :message,
1960
+ :reason,
1961
+ :field_list)
1962
+ SENSITIVE = []
1963
+ include Aws::Structure
1964
+ end
1965
+
1966
+ # The input failed to meet the constraints specified by the Amazon Web
1967
+ # Services service in a specified field.
1968
+ #
1969
+ # @!attribute [rw] name
1970
+ # The field name where the invalid entry was detected.
1971
+ # @return [String]
1972
+ #
1973
+ # @!attribute [rw] message
1974
+ # A message about the validation exception.
1975
+ # @return [String]
1976
+ #
1977
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appfabric-2023-05-19/ValidationExceptionField AWS API Documentation
1978
+ #
1979
+ class ValidationExceptionField < Struct.new(
1980
+ :name,
1981
+ :message)
1982
+ SENSITIVE = []
1983
+ include Aws::Structure
1984
+ end
1985
+
1986
+ end
1987
+ end