aws-sdk-verifiedpermissions 1.15.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/types.rbs ADDED
@@ -0,0 +1,749 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::VerifiedPermissions
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ActionIdentifier
17
+ attr_accessor action_type: ::String
18
+ attr_accessor action_id: ::String
19
+ SENSITIVE: [:action_type, :action_id]
20
+ end
21
+
22
+ class AttributeValue
23
+ attr_accessor boolean: bool
24
+ attr_accessor entity_identifier: Types::EntityIdentifier
25
+ attr_accessor long: ::Integer
26
+ attr_accessor string: ::String
27
+ attr_accessor set: ::Array[Types::AttributeValue]
28
+ attr_accessor record: ::Hash[::String, Types::AttributeValue]
29
+ attr_accessor unknown: untyped
30
+ SENSITIVE: [:boolean, :long, :string]
31
+
32
+ class Boolean < AttributeValue
33
+ end
34
+ class EntityIdentifier < AttributeValue
35
+ end
36
+ class Long < AttributeValue
37
+ end
38
+ class String < AttributeValue
39
+ end
40
+ class Set < AttributeValue
41
+ end
42
+ class Record < AttributeValue
43
+ end
44
+ class Unknown < AttributeValue
45
+ end
46
+ end
47
+
48
+ class BatchIsAuthorizedInput
49
+ attr_accessor policy_store_id: ::String
50
+ attr_accessor entities: Types::EntitiesDefinition
51
+ attr_accessor requests: ::Array[Types::BatchIsAuthorizedInputItem]
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class BatchIsAuthorizedInputItem
56
+ attr_accessor principal: Types::EntityIdentifier
57
+ attr_accessor action: Types::ActionIdentifier
58
+ attr_accessor resource: Types::EntityIdentifier
59
+ attr_accessor context: Types::ContextDefinition
60
+ SENSITIVE: []
61
+ end
62
+
63
+ class BatchIsAuthorizedOutput
64
+ attr_accessor results: ::Array[Types::BatchIsAuthorizedOutputItem]
65
+ SENSITIVE: []
66
+ end
67
+
68
+ class BatchIsAuthorizedOutputItem
69
+ attr_accessor request: Types::BatchIsAuthorizedInputItem
70
+ attr_accessor decision: ("ALLOW" | "DENY")
71
+ attr_accessor determining_policies: ::Array[Types::DeterminingPolicyItem]
72
+ attr_accessor errors: ::Array[Types::EvaluationErrorItem]
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class CognitoUserPoolConfiguration
77
+ attr_accessor user_pool_arn: ::String
78
+ attr_accessor client_ids: ::Array[::String]
79
+ SENSITIVE: []
80
+ end
81
+
82
+ class Configuration
83
+ attr_accessor cognito_user_pool_configuration: Types::CognitoUserPoolConfiguration
84
+ attr_accessor unknown: untyped
85
+ SENSITIVE: []
86
+
87
+ class CognitoUserPoolConfiguration < Configuration
88
+ end
89
+ class Unknown < Configuration
90
+ end
91
+ end
92
+
93
+ class ConflictException
94
+ attr_accessor message: ::String
95
+ attr_accessor resources: ::Array[Types::ResourceConflict]
96
+ SENSITIVE: []
97
+ end
98
+
99
+ class ContextDefinition
100
+ attr_accessor context_map: ::Hash[::String, Types::AttributeValue]
101
+ attr_accessor unknown: untyped
102
+ SENSITIVE: []
103
+
104
+ class ContextMap < ContextDefinition
105
+ end
106
+ class Unknown < ContextDefinition
107
+ end
108
+ end
109
+
110
+ class CreateIdentitySourceInput
111
+ attr_accessor client_token: ::String
112
+ attr_accessor policy_store_id: ::String
113
+ attr_accessor configuration: Types::Configuration
114
+ attr_accessor principal_entity_type: ::String
115
+ SENSITIVE: [:principal_entity_type]
116
+ end
117
+
118
+ class CreateIdentitySourceOutput
119
+ attr_accessor created_date: ::Time
120
+ attr_accessor identity_source_id: ::String
121
+ attr_accessor last_updated_date: ::Time
122
+ attr_accessor policy_store_id: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class CreatePolicyInput
127
+ attr_accessor client_token: ::String
128
+ attr_accessor policy_store_id: ::String
129
+ attr_accessor definition: Types::PolicyDefinition
130
+ SENSITIVE: []
131
+ end
132
+
133
+ class CreatePolicyOutput
134
+ attr_accessor policy_store_id: ::String
135
+ attr_accessor policy_id: ::String
136
+ attr_accessor policy_type: ("STATIC" | "TEMPLATE_LINKED")
137
+ attr_accessor principal: Types::EntityIdentifier
138
+ attr_accessor resource: Types::EntityIdentifier
139
+ attr_accessor created_date: ::Time
140
+ attr_accessor last_updated_date: ::Time
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class CreatePolicyStoreInput
145
+ attr_accessor client_token: ::String
146
+ attr_accessor validation_settings: Types::ValidationSettings
147
+ attr_accessor description: ::String
148
+ SENSITIVE: [:description]
149
+ end
150
+
151
+ class CreatePolicyStoreOutput
152
+ attr_accessor policy_store_id: ::String
153
+ attr_accessor arn: ::String
154
+ attr_accessor created_date: ::Time
155
+ attr_accessor last_updated_date: ::Time
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class CreatePolicyTemplateInput
160
+ attr_accessor client_token: ::String
161
+ attr_accessor policy_store_id: ::String
162
+ attr_accessor description: ::String
163
+ attr_accessor statement: ::String
164
+ SENSITIVE: [:description, :statement]
165
+ end
166
+
167
+ class CreatePolicyTemplateOutput
168
+ attr_accessor policy_store_id: ::String
169
+ attr_accessor policy_template_id: ::String
170
+ attr_accessor created_date: ::Time
171
+ attr_accessor last_updated_date: ::Time
172
+ SENSITIVE: []
173
+ end
174
+
175
+ class DeleteIdentitySourceInput
176
+ attr_accessor policy_store_id: ::String
177
+ attr_accessor identity_source_id: ::String
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class DeleteIdentitySourceOutput < Aws::EmptyStructure
182
+ end
183
+
184
+ class DeletePolicyInput
185
+ attr_accessor policy_store_id: ::String
186
+ attr_accessor policy_id: ::String
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class DeletePolicyOutput < Aws::EmptyStructure
191
+ end
192
+
193
+ class DeletePolicyStoreInput
194
+ attr_accessor policy_store_id: ::String
195
+ SENSITIVE: []
196
+ end
197
+
198
+ class DeletePolicyStoreOutput < Aws::EmptyStructure
199
+ end
200
+
201
+ class DeletePolicyTemplateInput
202
+ attr_accessor policy_store_id: ::String
203
+ attr_accessor policy_template_id: ::String
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class DeletePolicyTemplateOutput < Aws::EmptyStructure
208
+ end
209
+
210
+ class DeterminingPolicyItem
211
+ attr_accessor policy_id: ::String
212
+ SENSITIVE: []
213
+ end
214
+
215
+ class EntitiesDefinition
216
+ attr_accessor entity_list: ::Array[Types::EntityItem]
217
+ attr_accessor unknown: untyped
218
+ SENSITIVE: []
219
+
220
+ class EntityList < EntitiesDefinition
221
+ end
222
+ class Unknown < EntitiesDefinition
223
+ end
224
+ end
225
+
226
+ class EntityIdentifier
227
+ attr_accessor entity_type: ::String
228
+ attr_accessor entity_id: ::String
229
+ SENSITIVE: [:entity_type, :entity_id]
230
+ end
231
+
232
+ class EntityItem
233
+ attr_accessor identifier: Types::EntityIdentifier
234
+ attr_accessor attributes: ::Hash[::String, Types::AttributeValue]
235
+ attr_accessor parents: ::Array[Types::EntityIdentifier]
236
+ SENSITIVE: []
237
+ end
238
+
239
+ class EntityReference
240
+ attr_accessor unspecified: bool
241
+ attr_accessor identifier: Types::EntityIdentifier
242
+ attr_accessor unknown: untyped
243
+ SENSITIVE: []
244
+
245
+ class Unspecified < EntityReference
246
+ end
247
+ class Identifier < EntityReference
248
+ end
249
+ class Unknown < EntityReference
250
+ end
251
+ end
252
+
253
+ class EvaluationErrorItem
254
+ attr_accessor error_description: ::String
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class GetIdentitySourceInput
259
+ attr_accessor policy_store_id: ::String
260
+ attr_accessor identity_source_id: ::String
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class GetIdentitySourceOutput
265
+ attr_accessor created_date: ::Time
266
+ attr_accessor details: Types::IdentitySourceDetails
267
+ attr_accessor identity_source_id: ::String
268
+ attr_accessor last_updated_date: ::Time
269
+ attr_accessor policy_store_id: ::String
270
+ attr_accessor principal_entity_type: ::String
271
+ SENSITIVE: [:principal_entity_type]
272
+ end
273
+
274
+ class GetPolicyInput
275
+ attr_accessor policy_store_id: ::String
276
+ attr_accessor policy_id: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class GetPolicyOutput
281
+ attr_accessor policy_store_id: ::String
282
+ attr_accessor policy_id: ::String
283
+ attr_accessor policy_type: ("STATIC" | "TEMPLATE_LINKED")
284
+ attr_accessor principal: Types::EntityIdentifier
285
+ attr_accessor resource: Types::EntityIdentifier
286
+ attr_accessor definition: Types::PolicyDefinitionDetail
287
+ attr_accessor created_date: ::Time
288
+ attr_accessor last_updated_date: ::Time
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class GetPolicyStoreInput
293
+ attr_accessor policy_store_id: ::String
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class GetPolicyStoreOutput
298
+ attr_accessor policy_store_id: ::String
299
+ attr_accessor arn: ::String
300
+ attr_accessor validation_settings: Types::ValidationSettings
301
+ attr_accessor created_date: ::Time
302
+ attr_accessor last_updated_date: ::Time
303
+ attr_accessor description: ::String
304
+ SENSITIVE: [:description]
305
+ end
306
+
307
+ class GetPolicyTemplateInput
308
+ attr_accessor policy_store_id: ::String
309
+ attr_accessor policy_template_id: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class GetPolicyTemplateOutput
314
+ attr_accessor policy_store_id: ::String
315
+ attr_accessor policy_template_id: ::String
316
+ attr_accessor description: ::String
317
+ attr_accessor statement: ::String
318
+ attr_accessor created_date: ::Time
319
+ attr_accessor last_updated_date: ::Time
320
+ SENSITIVE: [:description, :statement]
321
+ end
322
+
323
+ class GetSchemaInput
324
+ attr_accessor policy_store_id: ::String
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class GetSchemaOutput
329
+ attr_accessor policy_store_id: ::String
330
+ attr_accessor schema: ::String
331
+ attr_accessor created_date: ::Time
332
+ attr_accessor last_updated_date: ::Time
333
+ attr_accessor namespaces: ::Array[::String]
334
+ SENSITIVE: [:schema]
335
+ end
336
+
337
+ class IdentitySourceDetails
338
+ attr_accessor client_ids: ::Array[::String]
339
+ attr_accessor user_pool_arn: ::String
340
+ attr_accessor discovery_url: ::String
341
+ attr_accessor open_id_issuer: ("COGNITO")
342
+ SENSITIVE: []
343
+ end
344
+
345
+ class IdentitySourceFilter
346
+ attr_accessor principal_entity_type: ::String
347
+ SENSITIVE: [:principal_entity_type]
348
+ end
349
+
350
+ class IdentitySourceItem
351
+ attr_accessor created_date: ::Time
352
+ attr_accessor details: Types::IdentitySourceItemDetails
353
+ attr_accessor identity_source_id: ::String
354
+ attr_accessor last_updated_date: ::Time
355
+ attr_accessor policy_store_id: ::String
356
+ attr_accessor principal_entity_type: ::String
357
+ SENSITIVE: [:principal_entity_type]
358
+ end
359
+
360
+ class IdentitySourceItemDetails
361
+ attr_accessor client_ids: ::Array[::String]
362
+ attr_accessor user_pool_arn: ::String
363
+ attr_accessor discovery_url: ::String
364
+ attr_accessor open_id_issuer: ("COGNITO")
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class InternalServerException
369
+ attr_accessor message: ::String
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class IsAuthorizedInput
374
+ attr_accessor policy_store_id: ::String
375
+ attr_accessor principal: Types::EntityIdentifier
376
+ attr_accessor action: Types::ActionIdentifier
377
+ attr_accessor resource: Types::EntityIdentifier
378
+ attr_accessor context: Types::ContextDefinition
379
+ attr_accessor entities: Types::EntitiesDefinition
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class IsAuthorizedOutput
384
+ attr_accessor decision: ("ALLOW" | "DENY")
385
+ attr_accessor determining_policies: ::Array[Types::DeterminingPolicyItem]
386
+ attr_accessor errors: ::Array[Types::EvaluationErrorItem]
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class IsAuthorizedWithTokenInput
391
+ attr_accessor policy_store_id: ::String
392
+ attr_accessor identity_token: ::String
393
+ attr_accessor access_token: ::String
394
+ attr_accessor action: Types::ActionIdentifier
395
+ attr_accessor resource: Types::EntityIdentifier
396
+ attr_accessor context: Types::ContextDefinition
397
+ attr_accessor entities: Types::EntitiesDefinition
398
+ SENSITIVE: [:identity_token, :access_token]
399
+ end
400
+
401
+ class IsAuthorizedWithTokenOutput
402
+ attr_accessor decision: ("ALLOW" | "DENY")
403
+ attr_accessor determining_policies: ::Array[Types::DeterminingPolicyItem]
404
+ attr_accessor errors: ::Array[Types::EvaluationErrorItem]
405
+ SENSITIVE: []
406
+ end
407
+
408
+ class ListIdentitySourcesInput
409
+ attr_accessor policy_store_id: ::String
410
+ attr_accessor next_token: ::String
411
+ attr_accessor max_results: ::Integer
412
+ attr_accessor filters: ::Array[Types::IdentitySourceFilter]
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class ListIdentitySourcesOutput
417
+ attr_accessor next_token: ::String
418
+ attr_accessor identity_sources: ::Array[Types::IdentitySourceItem]
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class ListPoliciesInput
423
+ attr_accessor policy_store_id: ::String
424
+ attr_accessor next_token: ::String
425
+ attr_accessor max_results: ::Integer
426
+ attr_accessor filter: Types::PolicyFilter
427
+ SENSITIVE: []
428
+ end
429
+
430
+ class ListPoliciesOutput
431
+ attr_accessor next_token: ::String
432
+ attr_accessor policies: ::Array[Types::PolicyItem]
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class ListPolicyStoresInput
437
+ attr_accessor next_token: ::String
438
+ attr_accessor max_results: ::Integer
439
+ SENSITIVE: []
440
+ end
441
+
442
+ class ListPolicyStoresOutput
443
+ attr_accessor next_token: ::String
444
+ attr_accessor policy_stores: ::Array[Types::PolicyStoreItem]
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class ListPolicyTemplatesInput
449
+ attr_accessor policy_store_id: ::String
450
+ attr_accessor next_token: ::String
451
+ attr_accessor max_results: ::Integer
452
+ SENSITIVE: []
453
+ end
454
+
455
+ class ListPolicyTemplatesOutput
456
+ attr_accessor next_token: ::String
457
+ attr_accessor policy_templates: ::Array[Types::PolicyTemplateItem]
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class PolicyDefinition
462
+ attr_accessor static: Types::StaticPolicyDefinition
463
+ attr_accessor template_linked: Types::TemplateLinkedPolicyDefinition
464
+ attr_accessor unknown: untyped
465
+ SENSITIVE: []
466
+
467
+ class Static < PolicyDefinition
468
+ end
469
+ class TemplateLinked < PolicyDefinition
470
+ end
471
+ class Unknown < PolicyDefinition
472
+ end
473
+ end
474
+
475
+ class PolicyDefinitionDetail
476
+ attr_accessor static: Types::StaticPolicyDefinitionDetail
477
+ attr_accessor template_linked: Types::TemplateLinkedPolicyDefinitionDetail
478
+ attr_accessor unknown: untyped
479
+ SENSITIVE: []
480
+
481
+ class Static < PolicyDefinitionDetail
482
+ end
483
+ class TemplateLinked < PolicyDefinitionDetail
484
+ end
485
+ class Unknown < PolicyDefinitionDetail
486
+ end
487
+ end
488
+
489
+ class PolicyDefinitionItem
490
+ attr_accessor static: Types::StaticPolicyDefinitionItem
491
+ attr_accessor template_linked: Types::TemplateLinkedPolicyDefinitionItem
492
+ attr_accessor unknown: untyped
493
+ SENSITIVE: []
494
+
495
+ class Static < PolicyDefinitionItem
496
+ end
497
+ class TemplateLinked < PolicyDefinitionItem
498
+ end
499
+ class Unknown < PolicyDefinitionItem
500
+ end
501
+ end
502
+
503
+ class PolicyFilter
504
+ attr_accessor principal: Types::EntityReference
505
+ attr_accessor resource: Types::EntityReference
506
+ attr_accessor policy_type: ("STATIC" | "TEMPLATE_LINKED")
507
+ attr_accessor policy_template_id: ::String
508
+ SENSITIVE: []
509
+ end
510
+
511
+ class PolicyItem
512
+ attr_accessor policy_store_id: ::String
513
+ attr_accessor policy_id: ::String
514
+ attr_accessor policy_type: ("STATIC" | "TEMPLATE_LINKED")
515
+ attr_accessor principal: Types::EntityIdentifier
516
+ attr_accessor resource: Types::EntityIdentifier
517
+ attr_accessor definition: Types::PolicyDefinitionItem
518
+ attr_accessor created_date: ::Time
519
+ attr_accessor last_updated_date: ::Time
520
+ SENSITIVE: []
521
+ end
522
+
523
+ class PolicyStoreItem
524
+ attr_accessor policy_store_id: ::String
525
+ attr_accessor arn: ::String
526
+ attr_accessor created_date: ::Time
527
+ attr_accessor last_updated_date: ::Time
528
+ attr_accessor description: ::String
529
+ SENSITIVE: [:description]
530
+ end
531
+
532
+ class PolicyTemplateItem
533
+ attr_accessor policy_store_id: ::String
534
+ attr_accessor policy_template_id: ::String
535
+ attr_accessor description: ::String
536
+ attr_accessor created_date: ::Time
537
+ attr_accessor last_updated_date: ::Time
538
+ SENSITIVE: [:description]
539
+ end
540
+
541
+ class PutSchemaInput
542
+ attr_accessor policy_store_id: ::String
543
+ attr_accessor definition: Types::SchemaDefinition
544
+ SENSITIVE: []
545
+ end
546
+
547
+ class PutSchemaOutput
548
+ attr_accessor policy_store_id: ::String
549
+ attr_accessor namespaces: ::Array[::String]
550
+ attr_accessor created_date: ::Time
551
+ attr_accessor last_updated_date: ::Time
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class ResourceConflict
556
+ attr_accessor resource_id: ::String
557
+ attr_accessor resource_type: ("IDENTITY_SOURCE" | "POLICY_STORE" | "POLICY" | "POLICY_TEMPLATE" | "SCHEMA")
558
+ SENSITIVE: []
559
+ end
560
+
561
+ class ResourceNotFoundException
562
+ attr_accessor message: ::String
563
+ attr_accessor resource_id: ::String
564
+ attr_accessor resource_type: ("IDENTITY_SOURCE" | "POLICY_STORE" | "POLICY" | "POLICY_TEMPLATE" | "SCHEMA")
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class SchemaDefinition
569
+ attr_accessor cedar_json: ::String
570
+ attr_accessor unknown: untyped
571
+ SENSITIVE: [:cedar_json]
572
+
573
+ class CedarJson < SchemaDefinition
574
+ end
575
+ class Unknown < SchemaDefinition
576
+ end
577
+ end
578
+
579
+ class ServiceQuotaExceededException
580
+ attr_accessor message: ::String
581
+ attr_accessor resource_id: ::String
582
+ attr_accessor resource_type: ("IDENTITY_SOURCE" | "POLICY_STORE" | "POLICY" | "POLICY_TEMPLATE" | "SCHEMA")
583
+ attr_accessor service_code: ::String
584
+ attr_accessor quota_code: ::String
585
+ SENSITIVE: []
586
+ end
587
+
588
+ class StaticPolicyDefinition
589
+ attr_accessor description: ::String
590
+ attr_accessor statement: ::String
591
+ SENSITIVE: [:description, :statement]
592
+ end
593
+
594
+ class StaticPolicyDefinitionDetail
595
+ attr_accessor description: ::String
596
+ attr_accessor statement: ::String
597
+ SENSITIVE: [:description, :statement]
598
+ end
599
+
600
+ class StaticPolicyDefinitionItem
601
+ attr_accessor description: ::String
602
+ SENSITIVE: [:description]
603
+ end
604
+
605
+ class TemplateLinkedPolicyDefinition
606
+ attr_accessor policy_template_id: ::String
607
+ attr_accessor principal: Types::EntityIdentifier
608
+ attr_accessor resource: Types::EntityIdentifier
609
+ SENSITIVE: []
610
+ end
611
+
612
+ class TemplateLinkedPolicyDefinitionDetail
613
+ attr_accessor policy_template_id: ::String
614
+ attr_accessor principal: Types::EntityIdentifier
615
+ attr_accessor resource: Types::EntityIdentifier
616
+ SENSITIVE: []
617
+ end
618
+
619
+ class TemplateLinkedPolicyDefinitionItem
620
+ attr_accessor policy_template_id: ::String
621
+ attr_accessor principal: Types::EntityIdentifier
622
+ attr_accessor resource: Types::EntityIdentifier
623
+ SENSITIVE: []
624
+ end
625
+
626
+ class ThrottlingException
627
+ attr_accessor message: ::String
628
+ attr_accessor service_code: ::String
629
+ attr_accessor quota_code: ::String
630
+ SENSITIVE: []
631
+ end
632
+
633
+ class UpdateCognitoUserPoolConfiguration
634
+ attr_accessor user_pool_arn: ::String
635
+ attr_accessor client_ids: ::Array[::String]
636
+ SENSITIVE: []
637
+ end
638
+
639
+ class UpdateConfiguration
640
+ attr_accessor cognito_user_pool_configuration: Types::UpdateCognitoUserPoolConfiguration
641
+ attr_accessor unknown: untyped
642
+ SENSITIVE: []
643
+
644
+ class CognitoUserPoolConfiguration < UpdateConfiguration
645
+ end
646
+ class Unknown < UpdateConfiguration
647
+ end
648
+ end
649
+
650
+ class UpdateIdentitySourceInput
651
+ attr_accessor policy_store_id: ::String
652
+ attr_accessor identity_source_id: ::String
653
+ attr_accessor update_configuration: Types::UpdateConfiguration
654
+ attr_accessor principal_entity_type: ::String
655
+ SENSITIVE: [:principal_entity_type]
656
+ end
657
+
658
+ class UpdateIdentitySourceOutput
659
+ attr_accessor created_date: ::Time
660
+ attr_accessor identity_source_id: ::String
661
+ attr_accessor last_updated_date: ::Time
662
+ attr_accessor policy_store_id: ::String
663
+ SENSITIVE: []
664
+ end
665
+
666
+ class UpdatePolicyDefinition
667
+ attr_accessor static: Types::UpdateStaticPolicyDefinition
668
+ attr_accessor unknown: untyped
669
+ SENSITIVE: []
670
+
671
+ class Static < UpdatePolicyDefinition
672
+ end
673
+ class Unknown < UpdatePolicyDefinition
674
+ end
675
+ end
676
+
677
+ class UpdatePolicyInput
678
+ attr_accessor policy_store_id: ::String
679
+ attr_accessor policy_id: ::String
680
+ attr_accessor definition: Types::UpdatePolicyDefinition
681
+ SENSITIVE: []
682
+ end
683
+
684
+ class UpdatePolicyOutput
685
+ attr_accessor policy_store_id: ::String
686
+ attr_accessor policy_id: ::String
687
+ attr_accessor policy_type: ("STATIC" | "TEMPLATE_LINKED")
688
+ attr_accessor principal: Types::EntityIdentifier
689
+ attr_accessor resource: Types::EntityIdentifier
690
+ attr_accessor created_date: ::Time
691
+ attr_accessor last_updated_date: ::Time
692
+ SENSITIVE: []
693
+ end
694
+
695
+ class UpdatePolicyStoreInput
696
+ attr_accessor policy_store_id: ::String
697
+ attr_accessor validation_settings: Types::ValidationSettings
698
+ attr_accessor description: ::String
699
+ SENSITIVE: [:description]
700
+ end
701
+
702
+ class UpdatePolicyStoreOutput
703
+ attr_accessor policy_store_id: ::String
704
+ attr_accessor arn: ::String
705
+ attr_accessor created_date: ::Time
706
+ attr_accessor last_updated_date: ::Time
707
+ SENSITIVE: []
708
+ end
709
+
710
+ class UpdatePolicyTemplateInput
711
+ attr_accessor policy_store_id: ::String
712
+ attr_accessor policy_template_id: ::String
713
+ attr_accessor description: ::String
714
+ attr_accessor statement: ::String
715
+ SENSITIVE: [:description, :statement]
716
+ end
717
+
718
+ class UpdatePolicyTemplateOutput
719
+ attr_accessor policy_store_id: ::String
720
+ attr_accessor policy_template_id: ::String
721
+ attr_accessor created_date: ::Time
722
+ attr_accessor last_updated_date: ::Time
723
+ SENSITIVE: []
724
+ end
725
+
726
+ class UpdateStaticPolicyDefinition
727
+ attr_accessor description: ::String
728
+ attr_accessor statement: ::String
729
+ SENSITIVE: [:description, :statement]
730
+ end
731
+
732
+ class ValidationException
733
+ attr_accessor message: ::String
734
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
735
+ SENSITIVE: []
736
+ end
737
+
738
+ class ValidationExceptionField
739
+ attr_accessor path: ::String
740
+ attr_accessor message: ::String
741
+ SENSITIVE: []
742
+ end
743
+
744
+ class ValidationSettings
745
+ attr_accessor mode: ("OFF" | "STRICT")
746
+ SENSITIVE: []
747
+ end
748
+ end
749
+ end