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