aws-sdk-clouddirectory 1.53.0 → 1.54.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,1627 @@
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::CloudDirectory
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AddFacetToObjectRequest
17
+ attr_accessor directory_arn: ::String
18
+ attr_accessor schema_facet: Types::SchemaFacet
19
+ attr_accessor object_attribute_list: ::Array[Types::AttributeKeyAndValue]
20
+ attr_accessor object_reference: Types::ObjectReference
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class AddFacetToObjectResponse < Aws::EmptyStructure
25
+ end
26
+
27
+ class ApplySchemaRequest
28
+ attr_accessor published_schema_arn: ::String
29
+ attr_accessor directory_arn: ::String
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class ApplySchemaResponse
34
+ attr_accessor applied_schema_arn: ::String
35
+ attr_accessor directory_arn: ::String
36
+ SENSITIVE: []
37
+ end
38
+
39
+ class AttachObjectRequest
40
+ attr_accessor directory_arn: ::String
41
+ attr_accessor parent_reference: Types::ObjectReference
42
+ attr_accessor child_reference: Types::ObjectReference
43
+ attr_accessor link_name: ::String
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class AttachObjectResponse
48
+ attr_accessor attached_object_identifier: ::String
49
+ SENSITIVE: []
50
+ end
51
+
52
+ class AttachPolicyRequest
53
+ attr_accessor directory_arn: ::String
54
+ attr_accessor policy_reference: Types::ObjectReference
55
+ attr_accessor object_reference: Types::ObjectReference
56
+ SENSITIVE: []
57
+ end
58
+
59
+ class AttachPolicyResponse < Aws::EmptyStructure
60
+ end
61
+
62
+ class AttachToIndexRequest
63
+ attr_accessor directory_arn: ::String
64
+ attr_accessor index_reference: Types::ObjectReference
65
+ attr_accessor target_reference: Types::ObjectReference
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class AttachToIndexResponse
70
+ attr_accessor attached_object_identifier: ::String
71
+ SENSITIVE: []
72
+ end
73
+
74
+ class AttachTypedLinkRequest
75
+ attr_accessor directory_arn: ::String
76
+ attr_accessor source_object_reference: Types::ObjectReference
77
+ attr_accessor target_object_reference: Types::ObjectReference
78
+ attr_accessor typed_link_facet: Types::TypedLinkSchemaAndFacetName
79
+ attr_accessor attributes: ::Array[Types::AttributeNameAndValue]
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class AttachTypedLinkResponse
84
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
85
+ SENSITIVE: []
86
+ end
87
+
88
+ class AttributeKey
89
+ attr_accessor schema_arn: ::String
90
+ attr_accessor facet_name: ::String
91
+ attr_accessor name: ::String
92
+ SENSITIVE: []
93
+ end
94
+
95
+ class AttributeKeyAndValue
96
+ attr_accessor key: Types::AttributeKey
97
+ attr_accessor value: Types::TypedAttributeValue
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class AttributeNameAndValue
102
+ attr_accessor attribute_name: ::String
103
+ attr_accessor value: Types::TypedAttributeValue
104
+ SENSITIVE: []
105
+ end
106
+
107
+ class BatchAddFacetToObject
108
+ attr_accessor schema_facet: Types::SchemaFacet
109
+ attr_accessor object_attribute_list: ::Array[Types::AttributeKeyAndValue]
110
+ attr_accessor object_reference: Types::ObjectReference
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class BatchAddFacetToObjectResponse < Aws::EmptyStructure
115
+ end
116
+
117
+ class BatchAttachObject
118
+ attr_accessor parent_reference: Types::ObjectReference
119
+ attr_accessor child_reference: Types::ObjectReference
120
+ attr_accessor link_name: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class BatchAttachObjectResponse
125
+ attr_accessor attached_object_identifier: ::String
126
+ SENSITIVE: []
127
+ end
128
+
129
+ class BatchAttachPolicy
130
+ attr_accessor policy_reference: Types::ObjectReference
131
+ attr_accessor object_reference: Types::ObjectReference
132
+ SENSITIVE: []
133
+ end
134
+
135
+ class BatchAttachPolicyResponse < Aws::EmptyStructure
136
+ end
137
+
138
+ class BatchAttachToIndex
139
+ attr_accessor index_reference: Types::ObjectReference
140
+ attr_accessor target_reference: Types::ObjectReference
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class BatchAttachToIndexResponse
145
+ attr_accessor attached_object_identifier: ::String
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class BatchAttachTypedLink
150
+ attr_accessor source_object_reference: Types::ObjectReference
151
+ attr_accessor target_object_reference: Types::ObjectReference
152
+ attr_accessor typed_link_facet: Types::TypedLinkSchemaAndFacetName
153
+ attr_accessor attributes: ::Array[Types::AttributeNameAndValue]
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class BatchAttachTypedLinkResponse
158
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class BatchCreateIndex
163
+ attr_accessor ordered_indexed_attribute_list: ::Array[Types::AttributeKey]
164
+ attr_accessor is_unique: bool
165
+ attr_accessor parent_reference: Types::ObjectReference
166
+ attr_accessor link_name: ::String
167
+ attr_accessor batch_reference_name: ::String
168
+ SENSITIVE: []
169
+ end
170
+
171
+ class BatchCreateIndexResponse
172
+ attr_accessor object_identifier: ::String
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class BatchCreateObject
177
+ attr_accessor schema_facet: ::Array[Types::SchemaFacet]
178
+ attr_accessor object_attribute_list: ::Array[Types::AttributeKeyAndValue]
179
+ attr_accessor parent_reference: Types::ObjectReference
180
+ attr_accessor link_name: ::String
181
+ attr_accessor batch_reference_name: ::String
182
+ SENSITIVE: []
183
+ end
184
+
185
+ class BatchCreateObjectResponse
186
+ attr_accessor object_identifier: ::String
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class BatchDeleteObject
191
+ attr_accessor object_reference: Types::ObjectReference
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class BatchDeleteObjectResponse < Aws::EmptyStructure
196
+ end
197
+
198
+ class BatchDetachFromIndex
199
+ attr_accessor index_reference: Types::ObjectReference
200
+ attr_accessor target_reference: Types::ObjectReference
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class BatchDetachFromIndexResponse
205
+ attr_accessor detached_object_identifier: ::String
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class BatchDetachObject
210
+ attr_accessor parent_reference: Types::ObjectReference
211
+ attr_accessor link_name: ::String
212
+ attr_accessor batch_reference_name: ::String
213
+ SENSITIVE: []
214
+ end
215
+
216
+ class BatchDetachObjectResponse
217
+ attr_accessor detached_object_identifier: ::String
218
+ SENSITIVE: []
219
+ end
220
+
221
+ class BatchDetachPolicy
222
+ attr_accessor policy_reference: Types::ObjectReference
223
+ attr_accessor object_reference: Types::ObjectReference
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class BatchDetachPolicyResponse < Aws::EmptyStructure
228
+ end
229
+
230
+ class BatchDetachTypedLink
231
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class BatchDetachTypedLinkResponse < Aws::EmptyStructure
236
+ end
237
+
238
+ class BatchGetLinkAttributes
239
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
240
+ attr_accessor attribute_names: ::Array[::String]
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class BatchGetLinkAttributesResponse
245
+ attr_accessor attributes: ::Array[Types::AttributeKeyAndValue]
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class BatchGetObjectAttributes
250
+ attr_accessor object_reference: Types::ObjectReference
251
+ attr_accessor schema_facet: Types::SchemaFacet
252
+ attr_accessor attribute_names: ::Array[::String]
253
+ SENSITIVE: []
254
+ end
255
+
256
+ class BatchGetObjectAttributesResponse
257
+ attr_accessor attributes: ::Array[Types::AttributeKeyAndValue]
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class BatchGetObjectInformation
262
+ attr_accessor object_reference: Types::ObjectReference
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class BatchGetObjectInformationResponse
267
+ attr_accessor schema_facets: ::Array[Types::SchemaFacet]
268
+ attr_accessor object_identifier: ::String
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class BatchListAttachedIndices
273
+ attr_accessor target_reference: Types::ObjectReference
274
+ attr_accessor next_token: ::String
275
+ attr_accessor max_results: ::Integer
276
+ SENSITIVE: []
277
+ end
278
+
279
+ class BatchListAttachedIndicesResponse
280
+ attr_accessor index_attachments: ::Array[Types::IndexAttachment]
281
+ attr_accessor next_token: ::String
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class BatchListIncomingTypedLinks
286
+ attr_accessor object_reference: Types::ObjectReference
287
+ attr_accessor filter_attribute_ranges: ::Array[Types::TypedLinkAttributeRange]
288
+ attr_accessor filter_typed_link: Types::TypedLinkSchemaAndFacetName
289
+ attr_accessor next_token: ::String
290
+ attr_accessor max_results: ::Integer
291
+ SENSITIVE: []
292
+ end
293
+
294
+ class BatchListIncomingTypedLinksResponse
295
+ attr_accessor link_specifiers: ::Array[Types::TypedLinkSpecifier]
296
+ attr_accessor next_token: ::String
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class BatchListIndex
301
+ attr_accessor ranges_on_indexed_values: ::Array[Types::ObjectAttributeRange]
302
+ attr_accessor index_reference: Types::ObjectReference
303
+ attr_accessor max_results: ::Integer
304
+ attr_accessor next_token: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class BatchListIndexResponse
309
+ attr_accessor index_attachments: ::Array[Types::IndexAttachment]
310
+ attr_accessor next_token: ::String
311
+ SENSITIVE: []
312
+ end
313
+
314
+ class BatchListObjectAttributes
315
+ attr_accessor object_reference: Types::ObjectReference
316
+ attr_accessor next_token: ::String
317
+ attr_accessor max_results: ::Integer
318
+ attr_accessor facet_filter: Types::SchemaFacet
319
+ SENSITIVE: []
320
+ end
321
+
322
+ class BatchListObjectAttributesResponse
323
+ attr_accessor attributes: ::Array[Types::AttributeKeyAndValue]
324
+ attr_accessor next_token: ::String
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class BatchListObjectChildren
329
+ attr_accessor object_reference: Types::ObjectReference
330
+ attr_accessor next_token: ::String
331
+ attr_accessor max_results: ::Integer
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class BatchListObjectChildrenResponse
336
+ attr_accessor children: ::Hash[::String, ::String]
337
+ attr_accessor next_token: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class BatchListObjectParentPaths
342
+ attr_accessor object_reference: Types::ObjectReference
343
+ attr_accessor next_token: ::String
344
+ attr_accessor max_results: ::Integer
345
+ SENSITIVE: []
346
+ end
347
+
348
+ class BatchListObjectParentPathsResponse
349
+ attr_accessor path_to_object_identifiers_list: ::Array[Types::PathToObjectIdentifiers]
350
+ attr_accessor next_token: ::String
351
+ SENSITIVE: []
352
+ end
353
+
354
+ class BatchListObjectParents
355
+ attr_accessor object_reference: Types::ObjectReference
356
+ attr_accessor next_token: ::String
357
+ attr_accessor max_results: ::Integer
358
+ SENSITIVE: []
359
+ end
360
+
361
+ class BatchListObjectParentsResponse
362
+ attr_accessor parent_links: ::Array[Types::ObjectIdentifierAndLinkNameTuple]
363
+ attr_accessor next_token: ::String
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class BatchListObjectPolicies
368
+ attr_accessor object_reference: Types::ObjectReference
369
+ attr_accessor next_token: ::String
370
+ attr_accessor max_results: ::Integer
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class BatchListObjectPoliciesResponse
375
+ attr_accessor attached_policy_ids: ::Array[::String]
376
+ attr_accessor next_token: ::String
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class BatchListOutgoingTypedLinks
381
+ attr_accessor object_reference: Types::ObjectReference
382
+ attr_accessor filter_attribute_ranges: ::Array[Types::TypedLinkAttributeRange]
383
+ attr_accessor filter_typed_link: Types::TypedLinkSchemaAndFacetName
384
+ attr_accessor next_token: ::String
385
+ attr_accessor max_results: ::Integer
386
+ SENSITIVE: []
387
+ end
388
+
389
+ class BatchListOutgoingTypedLinksResponse
390
+ attr_accessor typed_link_specifiers: ::Array[Types::TypedLinkSpecifier]
391
+ attr_accessor next_token: ::String
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class BatchListPolicyAttachments
396
+ attr_accessor policy_reference: Types::ObjectReference
397
+ attr_accessor next_token: ::String
398
+ attr_accessor max_results: ::Integer
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class BatchListPolicyAttachmentsResponse
403
+ attr_accessor object_identifiers: ::Array[::String]
404
+ attr_accessor next_token: ::String
405
+ SENSITIVE: []
406
+ end
407
+
408
+ class BatchLookupPolicy
409
+ attr_accessor object_reference: Types::ObjectReference
410
+ attr_accessor next_token: ::String
411
+ attr_accessor max_results: ::Integer
412
+ SENSITIVE: []
413
+ end
414
+
415
+ class BatchLookupPolicyResponse
416
+ attr_accessor policy_to_path_list: ::Array[Types::PolicyToPath]
417
+ attr_accessor next_token: ::String
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class BatchReadException
422
+ attr_accessor type: ("ValidationException" | "InvalidArnException" | "ResourceNotFoundException" | "InvalidNextTokenException" | "AccessDeniedException" | "NotNodeException" | "FacetValidationException" | "CannotListParentOfRootException" | "NotIndexException" | "NotPolicyException" | "DirectoryNotEnabledException" | "LimitExceededException" | "InternalServiceException")
423
+ attr_accessor message: ::String
424
+ SENSITIVE: []
425
+ end
426
+
427
+ class BatchReadOperation
428
+ attr_accessor list_object_attributes: Types::BatchListObjectAttributes
429
+ attr_accessor list_object_children: Types::BatchListObjectChildren
430
+ attr_accessor list_attached_indices: Types::BatchListAttachedIndices
431
+ attr_accessor list_object_parent_paths: Types::BatchListObjectParentPaths
432
+ attr_accessor get_object_information: Types::BatchGetObjectInformation
433
+ attr_accessor get_object_attributes: Types::BatchGetObjectAttributes
434
+ attr_accessor list_object_parents: Types::BatchListObjectParents
435
+ attr_accessor list_object_policies: Types::BatchListObjectPolicies
436
+ attr_accessor list_policy_attachments: Types::BatchListPolicyAttachments
437
+ attr_accessor lookup_policy: Types::BatchLookupPolicy
438
+ attr_accessor list_index: Types::BatchListIndex
439
+ attr_accessor list_outgoing_typed_links: Types::BatchListOutgoingTypedLinks
440
+ attr_accessor list_incoming_typed_links: Types::BatchListIncomingTypedLinks
441
+ attr_accessor get_link_attributes: Types::BatchGetLinkAttributes
442
+ SENSITIVE: []
443
+ end
444
+
445
+ class BatchReadOperationResponse
446
+ attr_accessor successful_response: Types::BatchReadSuccessfulResponse
447
+ attr_accessor exception_response: Types::BatchReadException
448
+ SENSITIVE: []
449
+ end
450
+
451
+ class BatchReadRequest
452
+ attr_accessor directory_arn: ::String
453
+ attr_accessor operations: ::Array[Types::BatchReadOperation]
454
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
455
+ SENSITIVE: []
456
+ end
457
+
458
+ class BatchReadResponse
459
+ attr_accessor responses: ::Array[Types::BatchReadOperationResponse]
460
+ SENSITIVE: []
461
+ end
462
+
463
+ class BatchReadSuccessfulResponse
464
+ attr_accessor list_object_attributes: Types::BatchListObjectAttributesResponse
465
+ attr_accessor list_object_children: Types::BatchListObjectChildrenResponse
466
+ attr_accessor get_object_information: Types::BatchGetObjectInformationResponse
467
+ attr_accessor get_object_attributes: Types::BatchGetObjectAttributesResponse
468
+ attr_accessor list_attached_indices: Types::BatchListAttachedIndicesResponse
469
+ attr_accessor list_object_parent_paths: Types::BatchListObjectParentPathsResponse
470
+ attr_accessor list_object_policies: Types::BatchListObjectPoliciesResponse
471
+ attr_accessor list_policy_attachments: Types::BatchListPolicyAttachmentsResponse
472
+ attr_accessor lookup_policy: Types::BatchLookupPolicyResponse
473
+ attr_accessor list_index: Types::BatchListIndexResponse
474
+ attr_accessor list_outgoing_typed_links: Types::BatchListOutgoingTypedLinksResponse
475
+ attr_accessor list_incoming_typed_links: Types::BatchListIncomingTypedLinksResponse
476
+ attr_accessor get_link_attributes: Types::BatchGetLinkAttributesResponse
477
+ attr_accessor list_object_parents: Types::BatchListObjectParentsResponse
478
+ SENSITIVE: []
479
+ end
480
+
481
+ class BatchRemoveFacetFromObject
482
+ attr_accessor schema_facet: Types::SchemaFacet
483
+ attr_accessor object_reference: Types::ObjectReference
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class BatchRemoveFacetFromObjectResponse < Aws::EmptyStructure
488
+ end
489
+
490
+ class BatchUpdateLinkAttributes
491
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
492
+ attr_accessor attribute_updates: ::Array[Types::LinkAttributeUpdate]
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class BatchUpdateLinkAttributesResponse < Aws::EmptyStructure
497
+ end
498
+
499
+ class BatchUpdateObjectAttributes
500
+ attr_accessor object_reference: Types::ObjectReference
501
+ attr_accessor attribute_updates: ::Array[Types::ObjectAttributeUpdate]
502
+ SENSITIVE: []
503
+ end
504
+
505
+ class BatchUpdateObjectAttributesResponse
506
+ attr_accessor object_identifier: ::String
507
+ SENSITIVE: []
508
+ end
509
+
510
+ class BatchWriteException
511
+ attr_accessor index: ::Integer
512
+ attr_accessor type: ("InternalServiceException" | "ValidationException" | "InvalidArnException" | "LinkNameAlreadyInUseException" | "StillContainsLinksException" | "FacetValidationException" | "ObjectNotDetachedException" | "ResourceNotFoundException" | "AccessDeniedException" | "InvalidAttachmentException" | "NotIndexException" | "NotNodeException" | "IndexedAttributeMissingException" | "ObjectAlreadyDetachedException" | "NotPolicyException" | "DirectoryNotEnabledException" | "LimitExceededException" | "UnsupportedIndexTypeException")
513
+ attr_accessor message: ::String
514
+ SENSITIVE: []
515
+ end
516
+
517
+ class BatchWriteOperation
518
+ attr_accessor create_object: Types::BatchCreateObject
519
+ attr_accessor attach_object: Types::BatchAttachObject
520
+ attr_accessor detach_object: Types::BatchDetachObject
521
+ attr_accessor update_object_attributes: Types::BatchUpdateObjectAttributes
522
+ attr_accessor delete_object: Types::BatchDeleteObject
523
+ attr_accessor add_facet_to_object: Types::BatchAddFacetToObject
524
+ attr_accessor remove_facet_from_object: Types::BatchRemoveFacetFromObject
525
+ attr_accessor attach_policy: Types::BatchAttachPolicy
526
+ attr_accessor detach_policy: Types::BatchDetachPolicy
527
+ attr_accessor create_index: Types::BatchCreateIndex
528
+ attr_accessor attach_to_index: Types::BatchAttachToIndex
529
+ attr_accessor detach_from_index: Types::BatchDetachFromIndex
530
+ attr_accessor attach_typed_link: Types::BatchAttachTypedLink
531
+ attr_accessor detach_typed_link: Types::BatchDetachTypedLink
532
+ attr_accessor update_link_attributes: Types::BatchUpdateLinkAttributes
533
+ SENSITIVE: []
534
+ end
535
+
536
+ class BatchWriteOperationResponse
537
+ attr_accessor create_object: Types::BatchCreateObjectResponse
538
+ attr_accessor attach_object: Types::BatchAttachObjectResponse
539
+ attr_accessor detach_object: Types::BatchDetachObjectResponse
540
+ attr_accessor update_object_attributes: Types::BatchUpdateObjectAttributesResponse
541
+ attr_accessor delete_object: Types::BatchDeleteObjectResponse
542
+ attr_accessor add_facet_to_object: Types::BatchAddFacetToObjectResponse
543
+ attr_accessor remove_facet_from_object: Types::BatchRemoveFacetFromObjectResponse
544
+ attr_accessor attach_policy: Types::BatchAttachPolicyResponse
545
+ attr_accessor detach_policy: Types::BatchDetachPolicyResponse
546
+ attr_accessor create_index: Types::BatchCreateIndexResponse
547
+ attr_accessor attach_to_index: Types::BatchAttachToIndexResponse
548
+ attr_accessor detach_from_index: Types::BatchDetachFromIndexResponse
549
+ attr_accessor attach_typed_link: Types::BatchAttachTypedLinkResponse
550
+ attr_accessor detach_typed_link: Types::BatchDetachTypedLinkResponse
551
+ attr_accessor update_link_attributes: Types::BatchUpdateLinkAttributesResponse
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class BatchWriteRequest
556
+ attr_accessor directory_arn: ::String
557
+ attr_accessor operations: ::Array[Types::BatchWriteOperation]
558
+ SENSITIVE: []
559
+ end
560
+
561
+ class BatchWriteResponse
562
+ attr_accessor responses: ::Array[Types::BatchWriteOperationResponse]
563
+ SENSITIVE: []
564
+ end
565
+
566
+ class CannotListParentOfRootException
567
+ attr_accessor message: ::String
568
+ SENSITIVE: []
569
+ end
570
+
571
+ class CreateDirectoryRequest
572
+ attr_accessor name: ::String
573
+ attr_accessor schema_arn: ::String
574
+ SENSITIVE: []
575
+ end
576
+
577
+ class CreateDirectoryResponse
578
+ attr_accessor directory_arn: ::String
579
+ attr_accessor name: ::String
580
+ attr_accessor object_identifier: ::String
581
+ attr_accessor applied_schema_arn: ::String
582
+ SENSITIVE: []
583
+ end
584
+
585
+ class CreateFacetRequest
586
+ attr_accessor schema_arn: ::String
587
+ attr_accessor name: ::String
588
+ attr_accessor attributes: ::Array[Types::FacetAttribute]
589
+ attr_accessor object_type: ("NODE" | "LEAF_NODE" | "POLICY" | "INDEX")
590
+ attr_accessor facet_style: ("STATIC" | "DYNAMIC")
591
+ SENSITIVE: []
592
+ end
593
+
594
+ class CreateFacetResponse < Aws::EmptyStructure
595
+ end
596
+
597
+ class CreateIndexRequest
598
+ attr_accessor directory_arn: ::String
599
+ attr_accessor ordered_indexed_attribute_list: ::Array[Types::AttributeKey]
600
+ attr_accessor is_unique: bool
601
+ attr_accessor parent_reference: Types::ObjectReference
602
+ attr_accessor link_name: ::String
603
+ SENSITIVE: []
604
+ end
605
+
606
+ class CreateIndexResponse
607
+ attr_accessor object_identifier: ::String
608
+ SENSITIVE: []
609
+ end
610
+
611
+ class CreateObjectRequest
612
+ attr_accessor directory_arn: ::String
613
+ attr_accessor schema_facets: ::Array[Types::SchemaFacet]
614
+ attr_accessor object_attribute_list: ::Array[Types::AttributeKeyAndValue]
615
+ attr_accessor parent_reference: Types::ObjectReference
616
+ attr_accessor link_name: ::String
617
+ SENSITIVE: []
618
+ end
619
+
620
+ class CreateObjectResponse
621
+ attr_accessor object_identifier: ::String
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class CreateSchemaRequest
626
+ attr_accessor name: ::String
627
+ SENSITIVE: []
628
+ end
629
+
630
+ class CreateSchemaResponse
631
+ attr_accessor schema_arn: ::String
632
+ SENSITIVE: []
633
+ end
634
+
635
+ class CreateTypedLinkFacetRequest
636
+ attr_accessor schema_arn: ::String
637
+ attr_accessor facet: Types::TypedLinkFacet
638
+ SENSITIVE: []
639
+ end
640
+
641
+ class CreateTypedLinkFacetResponse < Aws::EmptyStructure
642
+ end
643
+
644
+ class DeleteDirectoryRequest
645
+ attr_accessor directory_arn: ::String
646
+ SENSITIVE: []
647
+ end
648
+
649
+ class DeleteDirectoryResponse
650
+ attr_accessor directory_arn: ::String
651
+ SENSITIVE: []
652
+ end
653
+
654
+ class DeleteFacetRequest
655
+ attr_accessor schema_arn: ::String
656
+ attr_accessor name: ::String
657
+ SENSITIVE: []
658
+ end
659
+
660
+ class DeleteFacetResponse < Aws::EmptyStructure
661
+ end
662
+
663
+ class DeleteObjectRequest
664
+ attr_accessor directory_arn: ::String
665
+ attr_accessor object_reference: Types::ObjectReference
666
+ SENSITIVE: []
667
+ end
668
+
669
+ class DeleteObjectResponse < Aws::EmptyStructure
670
+ end
671
+
672
+ class DeleteSchemaRequest
673
+ attr_accessor schema_arn: ::String
674
+ SENSITIVE: []
675
+ end
676
+
677
+ class DeleteSchemaResponse
678
+ attr_accessor schema_arn: ::String
679
+ SENSITIVE: []
680
+ end
681
+
682
+ class DeleteTypedLinkFacetRequest
683
+ attr_accessor schema_arn: ::String
684
+ attr_accessor name: ::String
685
+ SENSITIVE: []
686
+ end
687
+
688
+ class DeleteTypedLinkFacetResponse < Aws::EmptyStructure
689
+ end
690
+
691
+ class DetachFromIndexRequest
692
+ attr_accessor directory_arn: ::String
693
+ attr_accessor index_reference: Types::ObjectReference
694
+ attr_accessor target_reference: Types::ObjectReference
695
+ SENSITIVE: []
696
+ end
697
+
698
+ class DetachFromIndexResponse
699
+ attr_accessor detached_object_identifier: ::String
700
+ SENSITIVE: []
701
+ end
702
+
703
+ class DetachObjectRequest
704
+ attr_accessor directory_arn: ::String
705
+ attr_accessor parent_reference: Types::ObjectReference
706
+ attr_accessor link_name: ::String
707
+ SENSITIVE: []
708
+ end
709
+
710
+ class DetachObjectResponse
711
+ attr_accessor detached_object_identifier: ::String
712
+ SENSITIVE: []
713
+ end
714
+
715
+ class DetachPolicyRequest
716
+ attr_accessor directory_arn: ::String
717
+ attr_accessor policy_reference: Types::ObjectReference
718
+ attr_accessor object_reference: Types::ObjectReference
719
+ SENSITIVE: []
720
+ end
721
+
722
+ class DetachPolicyResponse < Aws::EmptyStructure
723
+ end
724
+
725
+ class DetachTypedLinkRequest
726
+ attr_accessor directory_arn: ::String
727
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
728
+ SENSITIVE: []
729
+ end
730
+
731
+ class Directory
732
+ attr_accessor name: ::String
733
+ attr_accessor directory_arn: ::String
734
+ attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
735
+ attr_accessor creation_date_time: ::Time
736
+ SENSITIVE: []
737
+ end
738
+
739
+ class DirectoryAlreadyExistsException
740
+ attr_accessor message: ::String
741
+ SENSITIVE: []
742
+ end
743
+
744
+ class DirectoryDeletedException
745
+ attr_accessor message: ::String
746
+ SENSITIVE: []
747
+ end
748
+
749
+ class DirectoryNotDisabledException
750
+ attr_accessor message: ::String
751
+ SENSITIVE: []
752
+ end
753
+
754
+ class DirectoryNotEnabledException
755
+ attr_accessor message: ::String
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class DisableDirectoryRequest
760
+ attr_accessor directory_arn: ::String
761
+ SENSITIVE: []
762
+ end
763
+
764
+ class DisableDirectoryResponse
765
+ attr_accessor directory_arn: ::String
766
+ SENSITIVE: []
767
+ end
768
+
769
+ class EnableDirectoryRequest
770
+ attr_accessor directory_arn: ::String
771
+ SENSITIVE: []
772
+ end
773
+
774
+ class EnableDirectoryResponse
775
+ attr_accessor directory_arn: ::String
776
+ SENSITIVE: []
777
+ end
778
+
779
+ class Facet
780
+ attr_accessor name: ::String
781
+ attr_accessor object_type: ("NODE" | "LEAF_NODE" | "POLICY" | "INDEX")
782
+ attr_accessor facet_style: ("STATIC" | "DYNAMIC")
783
+ SENSITIVE: []
784
+ end
785
+
786
+ class FacetAlreadyExistsException
787
+ attr_accessor message: ::String
788
+ SENSITIVE: []
789
+ end
790
+
791
+ class FacetAttribute
792
+ attr_accessor name: ::String
793
+ attr_accessor attribute_definition: Types::FacetAttributeDefinition
794
+ attr_accessor attribute_reference: Types::FacetAttributeReference
795
+ attr_accessor required_behavior: ("REQUIRED_ALWAYS" | "NOT_REQUIRED")
796
+ SENSITIVE: []
797
+ end
798
+
799
+ class FacetAttributeDefinition
800
+ attr_accessor type: ("STRING" | "BINARY" | "BOOLEAN" | "NUMBER" | "DATETIME" | "VARIANT")
801
+ attr_accessor default_value: Types::TypedAttributeValue
802
+ attr_accessor is_immutable: bool
803
+ attr_accessor rules: ::Hash[::String, Types::Rule]
804
+ SENSITIVE: []
805
+ end
806
+
807
+ class FacetAttributeReference
808
+ attr_accessor target_facet_name: ::String
809
+ attr_accessor target_attribute_name: ::String
810
+ SENSITIVE: []
811
+ end
812
+
813
+ class FacetAttributeUpdate
814
+ attr_accessor attribute: Types::FacetAttribute
815
+ attr_accessor action: ("CREATE_OR_UPDATE" | "DELETE")
816
+ SENSITIVE: []
817
+ end
818
+
819
+ class FacetInUseException
820
+ attr_accessor message: ::String
821
+ SENSITIVE: []
822
+ end
823
+
824
+ class FacetNotFoundException
825
+ attr_accessor message: ::String
826
+ SENSITIVE: []
827
+ end
828
+
829
+ class FacetValidationException
830
+ attr_accessor message: ::String
831
+ SENSITIVE: []
832
+ end
833
+
834
+ class GetAppliedSchemaVersionRequest
835
+ attr_accessor schema_arn: ::String
836
+ SENSITIVE: []
837
+ end
838
+
839
+ class GetAppliedSchemaVersionResponse
840
+ attr_accessor applied_schema_arn: ::String
841
+ SENSITIVE: []
842
+ end
843
+
844
+ class GetDirectoryRequest
845
+ attr_accessor directory_arn: ::String
846
+ SENSITIVE: []
847
+ end
848
+
849
+ class GetDirectoryResponse
850
+ attr_accessor directory: Types::Directory
851
+ SENSITIVE: []
852
+ end
853
+
854
+ class GetFacetRequest
855
+ attr_accessor schema_arn: ::String
856
+ attr_accessor name: ::String
857
+ SENSITIVE: []
858
+ end
859
+
860
+ class GetFacetResponse
861
+ attr_accessor facet: Types::Facet
862
+ SENSITIVE: []
863
+ end
864
+
865
+ class GetLinkAttributesRequest
866
+ attr_accessor directory_arn: ::String
867
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
868
+ attr_accessor attribute_names: ::Array[::String]
869
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
870
+ SENSITIVE: []
871
+ end
872
+
873
+ class GetLinkAttributesResponse
874
+ attr_accessor attributes: ::Array[Types::AttributeKeyAndValue]
875
+ SENSITIVE: []
876
+ end
877
+
878
+ class GetObjectAttributesRequest
879
+ attr_accessor directory_arn: ::String
880
+ attr_accessor object_reference: Types::ObjectReference
881
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
882
+ attr_accessor schema_facet: Types::SchemaFacet
883
+ attr_accessor attribute_names: ::Array[::String]
884
+ SENSITIVE: []
885
+ end
886
+
887
+ class GetObjectAttributesResponse
888
+ attr_accessor attributes: ::Array[Types::AttributeKeyAndValue]
889
+ SENSITIVE: []
890
+ end
891
+
892
+ class GetObjectInformationRequest
893
+ attr_accessor directory_arn: ::String
894
+ attr_accessor object_reference: Types::ObjectReference
895
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
896
+ SENSITIVE: []
897
+ end
898
+
899
+ class GetObjectInformationResponse
900
+ attr_accessor schema_facets: ::Array[Types::SchemaFacet]
901
+ attr_accessor object_identifier: ::String
902
+ SENSITIVE: []
903
+ end
904
+
905
+ class GetSchemaAsJsonRequest
906
+ attr_accessor schema_arn: ::String
907
+ SENSITIVE: []
908
+ end
909
+
910
+ class GetSchemaAsJsonResponse
911
+ attr_accessor name: ::String
912
+ attr_accessor document: ::String
913
+ SENSITIVE: []
914
+ end
915
+
916
+ class GetTypedLinkFacetInformationRequest
917
+ attr_accessor schema_arn: ::String
918
+ attr_accessor name: ::String
919
+ SENSITIVE: []
920
+ end
921
+
922
+ class GetTypedLinkFacetInformationResponse
923
+ attr_accessor identity_attribute_order: ::Array[::String]
924
+ SENSITIVE: []
925
+ end
926
+
927
+ class IncompatibleSchemaException
928
+ attr_accessor message: ::String
929
+ SENSITIVE: []
930
+ end
931
+
932
+ class IndexAttachment
933
+ attr_accessor indexed_attributes: ::Array[Types::AttributeKeyAndValue]
934
+ attr_accessor object_identifier: ::String
935
+ SENSITIVE: []
936
+ end
937
+
938
+ class IndexedAttributeMissingException
939
+ attr_accessor message: ::String
940
+ SENSITIVE: []
941
+ end
942
+
943
+ class InternalServiceException
944
+ attr_accessor message: ::String
945
+ SENSITIVE: []
946
+ end
947
+
948
+ class InvalidArnException
949
+ attr_accessor message: ::String
950
+ SENSITIVE: []
951
+ end
952
+
953
+ class InvalidAttachmentException
954
+ attr_accessor message: ::String
955
+ SENSITIVE: []
956
+ end
957
+
958
+ class InvalidFacetUpdateException
959
+ attr_accessor message: ::String
960
+ SENSITIVE: []
961
+ end
962
+
963
+ class InvalidNextTokenException
964
+ attr_accessor message: ::String
965
+ SENSITIVE: []
966
+ end
967
+
968
+ class InvalidRuleException
969
+ attr_accessor message: ::String
970
+ SENSITIVE: []
971
+ end
972
+
973
+ class InvalidSchemaDocException
974
+ attr_accessor message: ::String
975
+ SENSITIVE: []
976
+ end
977
+
978
+ class InvalidTaggingRequestException
979
+ attr_accessor message: ::String
980
+ SENSITIVE: []
981
+ end
982
+
983
+ class LimitExceededException
984
+ attr_accessor message: ::String
985
+ SENSITIVE: []
986
+ end
987
+
988
+ class LinkAttributeAction
989
+ attr_accessor attribute_action_type: ("CREATE_OR_UPDATE" | "DELETE")
990
+ attr_accessor attribute_update_value: Types::TypedAttributeValue
991
+ SENSITIVE: []
992
+ end
993
+
994
+ class LinkAttributeUpdate
995
+ attr_accessor attribute_key: Types::AttributeKey
996
+ attr_accessor attribute_action: Types::LinkAttributeAction
997
+ SENSITIVE: []
998
+ end
999
+
1000
+ class LinkNameAlreadyInUseException
1001
+ attr_accessor message: ::String
1002
+ SENSITIVE: []
1003
+ end
1004
+
1005
+ class ListAppliedSchemaArnsRequest
1006
+ attr_accessor directory_arn: ::String
1007
+ attr_accessor schema_arn: ::String
1008
+ attr_accessor next_token: ::String
1009
+ attr_accessor max_results: ::Integer
1010
+ SENSITIVE: []
1011
+ end
1012
+
1013
+ class ListAppliedSchemaArnsResponse
1014
+ attr_accessor schema_arns: ::Array[::String]
1015
+ attr_accessor next_token: ::String
1016
+ SENSITIVE: []
1017
+ end
1018
+
1019
+ class ListAttachedIndicesRequest
1020
+ attr_accessor directory_arn: ::String
1021
+ attr_accessor target_reference: Types::ObjectReference
1022
+ attr_accessor next_token: ::String
1023
+ attr_accessor max_results: ::Integer
1024
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1025
+ SENSITIVE: []
1026
+ end
1027
+
1028
+ class ListAttachedIndicesResponse
1029
+ attr_accessor index_attachments: ::Array[Types::IndexAttachment]
1030
+ attr_accessor next_token: ::String
1031
+ SENSITIVE: []
1032
+ end
1033
+
1034
+ class ListDevelopmentSchemaArnsRequest
1035
+ attr_accessor next_token: ::String
1036
+ attr_accessor max_results: ::Integer
1037
+ SENSITIVE: []
1038
+ end
1039
+
1040
+ class ListDevelopmentSchemaArnsResponse
1041
+ attr_accessor schema_arns: ::Array[::String]
1042
+ attr_accessor next_token: ::String
1043
+ SENSITIVE: []
1044
+ end
1045
+
1046
+ class ListDirectoriesRequest
1047
+ attr_accessor next_token: ::String
1048
+ attr_accessor max_results: ::Integer
1049
+ attr_accessor state: ("ENABLED" | "DISABLED" | "DELETED")
1050
+ SENSITIVE: []
1051
+ end
1052
+
1053
+ class ListDirectoriesResponse
1054
+ attr_accessor directories: ::Array[Types::Directory]
1055
+ attr_accessor next_token: ::String
1056
+ SENSITIVE: []
1057
+ end
1058
+
1059
+ class ListFacetAttributesRequest
1060
+ attr_accessor schema_arn: ::String
1061
+ attr_accessor name: ::String
1062
+ attr_accessor next_token: ::String
1063
+ attr_accessor max_results: ::Integer
1064
+ SENSITIVE: []
1065
+ end
1066
+
1067
+ class ListFacetAttributesResponse
1068
+ attr_accessor attributes: ::Array[Types::FacetAttribute]
1069
+ attr_accessor next_token: ::String
1070
+ SENSITIVE: []
1071
+ end
1072
+
1073
+ class ListFacetNamesRequest
1074
+ attr_accessor schema_arn: ::String
1075
+ attr_accessor next_token: ::String
1076
+ attr_accessor max_results: ::Integer
1077
+ SENSITIVE: []
1078
+ end
1079
+
1080
+ class ListFacetNamesResponse
1081
+ attr_accessor facet_names: ::Array[::String]
1082
+ attr_accessor next_token: ::String
1083
+ SENSITIVE: []
1084
+ end
1085
+
1086
+ class ListIncomingTypedLinksRequest
1087
+ attr_accessor directory_arn: ::String
1088
+ attr_accessor object_reference: Types::ObjectReference
1089
+ attr_accessor filter_attribute_ranges: ::Array[Types::TypedLinkAttributeRange]
1090
+ attr_accessor filter_typed_link: Types::TypedLinkSchemaAndFacetName
1091
+ attr_accessor next_token: ::String
1092
+ attr_accessor max_results: ::Integer
1093
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1094
+ SENSITIVE: []
1095
+ end
1096
+
1097
+ class ListIncomingTypedLinksResponse
1098
+ attr_accessor link_specifiers: ::Array[Types::TypedLinkSpecifier]
1099
+ attr_accessor next_token: ::String
1100
+ SENSITIVE: []
1101
+ end
1102
+
1103
+ class ListIndexRequest
1104
+ attr_accessor directory_arn: ::String
1105
+ attr_accessor ranges_on_indexed_values: ::Array[Types::ObjectAttributeRange]
1106
+ attr_accessor index_reference: Types::ObjectReference
1107
+ attr_accessor max_results: ::Integer
1108
+ attr_accessor next_token: ::String
1109
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1110
+ SENSITIVE: []
1111
+ end
1112
+
1113
+ class ListIndexResponse
1114
+ attr_accessor index_attachments: ::Array[Types::IndexAttachment]
1115
+ attr_accessor next_token: ::String
1116
+ SENSITIVE: []
1117
+ end
1118
+
1119
+ class ListManagedSchemaArnsRequest
1120
+ attr_accessor schema_arn: ::String
1121
+ attr_accessor next_token: ::String
1122
+ attr_accessor max_results: ::Integer
1123
+ SENSITIVE: []
1124
+ end
1125
+
1126
+ class ListManagedSchemaArnsResponse
1127
+ attr_accessor schema_arns: ::Array[::String]
1128
+ attr_accessor next_token: ::String
1129
+ SENSITIVE: []
1130
+ end
1131
+
1132
+ class ListObjectAttributesRequest
1133
+ attr_accessor directory_arn: ::String
1134
+ attr_accessor object_reference: Types::ObjectReference
1135
+ attr_accessor next_token: ::String
1136
+ attr_accessor max_results: ::Integer
1137
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1138
+ attr_accessor facet_filter: Types::SchemaFacet
1139
+ SENSITIVE: []
1140
+ end
1141
+
1142
+ class ListObjectAttributesResponse
1143
+ attr_accessor attributes: ::Array[Types::AttributeKeyAndValue]
1144
+ attr_accessor next_token: ::String
1145
+ SENSITIVE: []
1146
+ end
1147
+
1148
+ class ListObjectChildrenRequest
1149
+ attr_accessor directory_arn: ::String
1150
+ attr_accessor object_reference: Types::ObjectReference
1151
+ attr_accessor next_token: ::String
1152
+ attr_accessor max_results: ::Integer
1153
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1154
+ SENSITIVE: []
1155
+ end
1156
+
1157
+ class ListObjectChildrenResponse
1158
+ attr_accessor children: ::Hash[::String, ::String]
1159
+ attr_accessor next_token: ::String
1160
+ SENSITIVE: []
1161
+ end
1162
+
1163
+ class ListObjectParentPathsRequest
1164
+ attr_accessor directory_arn: ::String
1165
+ attr_accessor object_reference: Types::ObjectReference
1166
+ attr_accessor next_token: ::String
1167
+ attr_accessor max_results: ::Integer
1168
+ SENSITIVE: []
1169
+ end
1170
+
1171
+ class ListObjectParentPathsResponse
1172
+ attr_accessor path_to_object_identifiers_list: ::Array[Types::PathToObjectIdentifiers]
1173
+ attr_accessor next_token: ::String
1174
+ SENSITIVE: []
1175
+ end
1176
+
1177
+ class ListObjectParentsRequest
1178
+ attr_accessor directory_arn: ::String
1179
+ attr_accessor object_reference: Types::ObjectReference
1180
+ attr_accessor next_token: ::String
1181
+ attr_accessor max_results: ::Integer
1182
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1183
+ attr_accessor include_all_links_to_each_parent: bool
1184
+ SENSITIVE: []
1185
+ end
1186
+
1187
+ class ListObjectParentsResponse
1188
+ attr_accessor parents: ::Hash[::String, ::String]
1189
+ attr_accessor next_token: ::String
1190
+ attr_accessor parent_links: ::Array[Types::ObjectIdentifierAndLinkNameTuple]
1191
+ SENSITIVE: []
1192
+ end
1193
+
1194
+ class ListObjectPoliciesRequest
1195
+ attr_accessor directory_arn: ::String
1196
+ attr_accessor object_reference: Types::ObjectReference
1197
+ attr_accessor next_token: ::String
1198
+ attr_accessor max_results: ::Integer
1199
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1200
+ SENSITIVE: []
1201
+ end
1202
+
1203
+ class ListObjectPoliciesResponse
1204
+ attr_accessor attached_policy_ids: ::Array[::String]
1205
+ attr_accessor next_token: ::String
1206
+ SENSITIVE: []
1207
+ end
1208
+
1209
+ class ListOutgoingTypedLinksRequest
1210
+ attr_accessor directory_arn: ::String
1211
+ attr_accessor object_reference: Types::ObjectReference
1212
+ attr_accessor filter_attribute_ranges: ::Array[Types::TypedLinkAttributeRange]
1213
+ attr_accessor filter_typed_link: Types::TypedLinkSchemaAndFacetName
1214
+ attr_accessor next_token: ::String
1215
+ attr_accessor max_results: ::Integer
1216
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1217
+ SENSITIVE: []
1218
+ end
1219
+
1220
+ class ListOutgoingTypedLinksResponse
1221
+ attr_accessor typed_link_specifiers: ::Array[Types::TypedLinkSpecifier]
1222
+ attr_accessor next_token: ::String
1223
+ SENSITIVE: []
1224
+ end
1225
+
1226
+ class ListPolicyAttachmentsRequest
1227
+ attr_accessor directory_arn: ::String
1228
+ attr_accessor policy_reference: Types::ObjectReference
1229
+ attr_accessor next_token: ::String
1230
+ attr_accessor max_results: ::Integer
1231
+ attr_accessor consistency_level: ("SERIALIZABLE" | "EVENTUAL")
1232
+ SENSITIVE: []
1233
+ end
1234
+
1235
+ class ListPolicyAttachmentsResponse
1236
+ attr_accessor object_identifiers: ::Array[::String]
1237
+ attr_accessor next_token: ::String
1238
+ SENSITIVE: []
1239
+ end
1240
+
1241
+ class ListPublishedSchemaArnsRequest
1242
+ attr_accessor schema_arn: ::String
1243
+ attr_accessor next_token: ::String
1244
+ attr_accessor max_results: ::Integer
1245
+ SENSITIVE: []
1246
+ end
1247
+
1248
+ class ListPublishedSchemaArnsResponse
1249
+ attr_accessor schema_arns: ::Array[::String]
1250
+ attr_accessor next_token: ::String
1251
+ SENSITIVE: []
1252
+ end
1253
+
1254
+ class ListTagsForResourceRequest
1255
+ attr_accessor resource_arn: ::String
1256
+ attr_accessor next_token: ::String
1257
+ attr_accessor max_results: ::Integer
1258
+ SENSITIVE: []
1259
+ end
1260
+
1261
+ class ListTagsForResourceResponse
1262
+ attr_accessor tags: ::Array[Types::Tag]
1263
+ attr_accessor next_token: ::String
1264
+ SENSITIVE: []
1265
+ end
1266
+
1267
+ class ListTypedLinkFacetAttributesRequest
1268
+ attr_accessor schema_arn: ::String
1269
+ attr_accessor name: ::String
1270
+ attr_accessor next_token: ::String
1271
+ attr_accessor max_results: ::Integer
1272
+ SENSITIVE: []
1273
+ end
1274
+
1275
+ class ListTypedLinkFacetAttributesResponse
1276
+ attr_accessor attributes: ::Array[Types::TypedLinkAttributeDefinition]
1277
+ attr_accessor next_token: ::String
1278
+ SENSITIVE: []
1279
+ end
1280
+
1281
+ class ListTypedLinkFacetNamesRequest
1282
+ attr_accessor schema_arn: ::String
1283
+ attr_accessor next_token: ::String
1284
+ attr_accessor max_results: ::Integer
1285
+ SENSITIVE: []
1286
+ end
1287
+
1288
+ class ListTypedLinkFacetNamesResponse
1289
+ attr_accessor facet_names: ::Array[::String]
1290
+ attr_accessor next_token: ::String
1291
+ SENSITIVE: []
1292
+ end
1293
+
1294
+ class LookupPolicyRequest
1295
+ attr_accessor directory_arn: ::String
1296
+ attr_accessor object_reference: Types::ObjectReference
1297
+ attr_accessor next_token: ::String
1298
+ attr_accessor max_results: ::Integer
1299
+ SENSITIVE: []
1300
+ end
1301
+
1302
+ class LookupPolicyResponse
1303
+ attr_accessor policy_to_path_list: ::Array[Types::PolicyToPath]
1304
+ attr_accessor next_token: ::String
1305
+ SENSITIVE: []
1306
+ end
1307
+
1308
+ class NotIndexException
1309
+ attr_accessor message: ::String
1310
+ SENSITIVE: []
1311
+ end
1312
+
1313
+ class NotNodeException
1314
+ attr_accessor message: ::String
1315
+ SENSITIVE: []
1316
+ end
1317
+
1318
+ class NotPolicyException
1319
+ attr_accessor message: ::String
1320
+ SENSITIVE: []
1321
+ end
1322
+
1323
+ class ObjectAlreadyDetachedException
1324
+ attr_accessor message: ::String
1325
+ SENSITIVE: []
1326
+ end
1327
+
1328
+ class ObjectAttributeAction
1329
+ attr_accessor object_attribute_action_type: ("CREATE_OR_UPDATE" | "DELETE")
1330
+ attr_accessor object_attribute_update_value: Types::TypedAttributeValue
1331
+ SENSITIVE: []
1332
+ end
1333
+
1334
+ class ObjectAttributeRange
1335
+ attr_accessor attribute_key: Types::AttributeKey
1336
+ attr_accessor range: Types::TypedAttributeValueRange
1337
+ SENSITIVE: []
1338
+ end
1339
+
1340
+ class ObjectAttributeUpdate
1341
+ attr_accessor object_attribute_key: Types::AttributeKey
1342
+ attr_accessor object_attribute_action: Types::ObjectAttributeAction
1343
+ SENSITIVE: []
1344
+ end
1345
+
1346
+ class ObjectIdentifierAndLinkNameTuple
1347
+ attr_accessor object_identifier: ::String
1348
+ attr_accessor link_name: ::String
1349
+ SENSITIVE: []
1350
+ end
1351
+
1352
+ class ObjectNotDetachedException
1353
+ attr_accessor message: ::String
1354
+ SENSITIVE: []
1355
+ end
1356
+
1357
+ class ObjectReference
1358
+ attr_accessor selector: ::String
1359
+ SENSITIVE: []
1360
+ end
1361
+
1362
+ class PathToObjectIdentifiers
1363
+ attr_accessor path: ::String
1364
+ attr_accessor object_identifiers: ::Array[::String]
1365
+ SENSITIVE: []
1366
+ end
1367
+
1368
+ class PolicyAttachment
1369
+ attr_accessor policy_id: ::String
1370
+ attr_accessor object_identifier: ::String
1371
+ attr_accessor policy_type: ::String
1372
+ SENSITIVE: []
1373
+ end
1374
+
1375
+ class PolicyToPath
1376
+ attr_accessor path: ::String
1377
+ attr_accessor policies: ::Array[Types::PolicyAttachment]
1378
+ SENSITIVE: []
1379
+ end
1380
+
1381
+ class PublishSchemaRequest
1382
+ attr_accessor development_schema_arn: ::String
1383
+ attr_accessor version: ::String
1384
+ attr_accessor minor_version: ::String
1385
+ attr_accessor name: ::String
1386
+ SENSITIVE: []
1387
+ end
1388
+
1389
+ class PublishSchemaResponse
1390
+ attr_accessor published_schema_arn: ::String
1391
+ SENSITIVE: []
1392
+ end
1393
+
1394
+ class PutSchemaFromJsonRequest
1395
+ attr_accessor schema_arn: ::String
1396
+ attr_accessor document: ::String
1397
+ SENSITIVE: []
1398
+ end
1399
+
1400
+ class PutSchemaFromJsonResponse
1401
+ attr_accessor arn: ::String
1402
+ SENSITIVE: []
1403
+ end
1404
+
1405
+ class RemoveFacetFromObjectRequest
1406
+ attr_accessor directory_arn: ::String
1407
+ attr_accessor schema_facet: Types::SchemaFacet
1408
+ attr_accessor object_reference: Types::ObjectReference
1409
+ SENSITIVE: []
1410
+ end
1411
+
1412
+ class RemoveFacetFromObjectResponse < Aws::EmptyStructure
1413
+ end
1414
+
1415
+ class ResourceNotFoundException
1416
+ attr_accessor message: ::String
1417
+ SENSITIVE: []
1418
+ end
1419
+
1420
+ class RetryableConflictException
1421
+ attr_accessor message: ::String
1422
+ SENSITIVE: []
1423
+ end
1424
+
1425
+ class Rule
1426
+ attr_accessor type: ("BINARY_LENGTH" | "NUMBER_COMPARISON" | "STRING_FROM_SET" | "STRING_LENGTH")
1427
+ attr_accessor parameters: ::Hash[::String, ::String]
1428
+ SENSITIVE: []
1429
+ end
1430
+
1431
+ class SchemaAlreadyExistsException
1432
+ attr_accessor message: ::String
1433
+ SENSITIVE: []
1434
+ end
1435
+
1436
+ class SchemaAlreadyPublishedException
1437
+ attr_accessor message: ::String
1438
+ SENSITIVE: []
1439
+ end
1440
+
1441
+ class SchemaFacet
1442
+ attr_accessor schema_arn: ::String
1443
+ attr_accessor facet_name: ::String
1444
+ SENSITIVE: []
1445
+ end
1446
+
1447
+ class StillContainsLinksException
1448
+ attr_accessor message: ::String
1449
+ SENSITIVE: []
1450
+ end
1451
+
1452
+ class Tag
1453
+ attr_accessor key: ::String
1454
+ attr_accessor value: ::String
1455
+ SENSITIVE: []
1456
+ end
1457
+
1458
+ class TagResourceRequest
1459
+ attr_accessor resource_arn: ::String
1460
+ attr_accessor tags: ::Array[Types::Tag]
1461
+ SENSITIVE: []
1462
+ end
1463
+
1464
+ class TagResourceResponse < Aws::EmptyStructure
1465
+ end
1466
+
1467
+ class TypedAttributeValue
1468
+ attr_accessor string_value: ::String
1469
+ attr_accessor binary_value: ::String
1470
+ attr_accessor boolean_value: bool
1471
+ attr_accessor number_value: ::String
1472
+ attr_accessor datetime_value: ::Time
1473
+ SENSITIVE: []
1474
+ end
1475
+
1476
+ class TypedAttributeValueRange
1477
+ attr_accessor start_mode: ("FIRST" | "LAST" | "LAST_BEFORE_MISSING_VALUES" | "INCLUSIVE" | "EXCLUSIVE")
1478
+ attr_accessor start_value: Types::TypedAttributeValue
1479
+ attr_accessor end_mode: ("FIRST" | "LAST" | "LAST_BEFORE_MISSING_VALUES" | "INCLUSIVE" | "EXCLUSIVE")
1480
+ attr_accessor end_value: Types::TypedAttributeValue
1481
+ SENSITIVE: []
1482
+ end
1483
+
1484
+ class TypedLinkAttributeDefinition
1485
+ attr_accessor name: ::String
1486
+ attr_accessor type: ("STRING" | "BINARY" | "BOOLEAN" | "NUMBER" | "DATETIME" | "VARIANT")
1487
+ attr_accessor default_value: Types::TypedAttributeValue
1488
+ attr_accessor is_immutable: bool
1489
+ attr_accessor rules: ::Hash[::String, Types::Rule]
1490
+ attr_accessor required_behavior: ("REQUIRED_ALWAYS" | "NOT_REQUIRED")
1491
+ SENSITIVE: []
1492
+ end
1493
+
1494
+ class TypedLinkAttributeRange
1495
+ attr_accessor attribute_name: ::String
1496
+ attr_accessor range: Types::TypedAttributeValueRange
1497
+ SENSITIVE: []
1498
+ end
1499
+
1500
+ class TypedLinkFacet
1501
+ attr_accessor name: ::String
1502
+ attr_accessor attributes: ::Array[Types::TypedLinkAttributeDefinition]
1503
+ attr_accessor identity_attribute_order: ::Array[::String]
1504
+ SENSITIVE: []
1505
+ end
1506
+
1507
+ class TypedLinkFacetAttributeUpdate
1508
+ attr_accessor attribute: Types::TypedLinkAttributeDefinition
1509
+ attr_accessor action: ("CREATE_OR_UPDATE" | "DELETE")
1510
+ SENSITIVE: []
1511
+ end
1512
+
1513
+ class TypedLinkSchemaAndFacetName
1514
+ attr_accessor schema_arn: ::String
1515
+ attr_accessor typed_link_name: ::String
1516
+ SENSITIVE: []
1517
+ end
1518
+
1519
+ class TypedLinkSpecifier
1520
+ attr_accessor typed_link_facet: Types::TypedLinkSchemaAndFacetName
1521
+ attr_accessor source_object_reference: Types::ObjectReference
1522
+ attr_accessor target_object_reference: Types::ObjectReference
1523
+ attr_accessor identity_attribute_values: ::Array[Types::AttributeNameAndValue]
1524
+ SENSITIVE: []
1525
+ end
1526
+
1527
+ class UnsupportedIndexTypeException
1528
+ attr_accessor message: ::String
1529
+ SENSITIVE: []
1530
+ end
1531
+
1532
+ class UntagResourceRequest
1533
+ attr_accessor resource_arn: ::String
1534
+ attr_accessor tag_keys: ::Array[::String]
1535
+ SENSITIVE: []
1536
+ end
1537
+
1538
+ class UntagResourceResponse < Aws::EmptyStructure
1539
+ end
1540
+
1541
+ class UpdateFacetRequest
1542
+ attr_accessor schema_arn: ::String
1543
+ attr_accessor name: ::String
1544
+ attr_accessor attribute_updates: ::Array[Types::FacetAttributeUpdate]
1545
+ attr_accessor object_type: ("NODE" | "LEAF_NODE" | "POLICY" | "INDEX")
1546
+ SENSITIVE: []
1547
+ end
1548
+
1549
+ class UpdateFacetResponse < Aws::EmptyStructure
1550
+ end
1551
+
1552
+ class UpdateLinkAttributesRequest
1553
+ attr_accessor directory_arn: ::String
1554
+ attr_accessor typed_link_specifier: Types::TypedLinkSpecifier
1555
+ attr_accessor attribute_updates: ::Array[Types::LinkAttributeUpdate]
1556
+ SENSITIVE: []
1557
+ end
1558
+
1559
+ class UpdateLinkAttributesResponse < Aws::EmptyStructure
1560
+ end
1561
+
1562
+ class UpdateObjectAttributesRequest
1563
+ attr_accessor directory_arn: ::String
1564
+ attr_accessor object_reference: Types::ObjectReference
1565
+ attr_accessor attribute_updates: ::Array[Types::ObjectAttributeUpdate]
1566
+ SENSITIVE: []
1567
+ end
1568
+
1569
+ class UpdateObjectAttributesResponse
1570
+ attr_accessor object_identifier: ::String
1571
+ SENSITIVE: []
1572
+ end
1573
+
1574
+ class UpdateSchemaRequest
1575
+ attr_accessor schema_arn: ::String
1576
+ attr_accessor name: ::String
1577
+ SENSITIVE: []
1578
+ end
1579
+
1580
+ class UpdateSchemaResponse
1581
+ attr_accessor schema_arn: ::String
1582
+ SENSITIVE: []
1583
+ end
1584
+
1585
+ class UpdateTypedLinkFacetRequest
1586
+ attr_accessor schema_arn: ::String
1587
+ attr_accessor name: ::String
1588
+ attr_accessor attribute_updates: ::Array[Types::TypedLinkFacetAttributeUpdate]
1589
+ attr_accessor identity_attribute_order: ::Array[::String]
1590
+ SENSITIVE: []
1591
+ end
1592
+
1593
+ class UpdateTypedLinkFacetResponse < Aws::EmptyStructure
1594
+ end
1595
+
1596
+ class UpgradeAppliedSchemaRequest
1597
+ attr_accessor published_schema_arn: ::String
1598
+ attr_accessor directory_arn: ::String
1599
+ attr_accessor dry_run: bool
1600
+ SENSITIVE: []
1601
+ end
1602
+
1603
+ class UpgradeAppliedSchemaResponse
1604
+ attr_accessor upgraded_schema_arn: ::String
1605
+ attr_accessor directory_arn: ::String
1606
+ SENSITIVE: []
1607
+ end
1608
+
1609
+ class UpgradePublishedSchemaRequest
1610
+ attr_accessor development_schema_arn: ::String
1611
+ attr_accessor published_schema_arn: ::String
1612
+ attr_accessor minor_version: ::String
1613
+ attr_accessor dry_run: bool
1614
+ SENSITIVE: []
1615
+ end
1616
+
1617
+ class UpgradePublishedSchemaResponse
1618
+ attr_accessor upgraded_schema_arn: ::String
1619
+ SENSITIVE: []
1620
+ end
1621
+
1622
+ class ValidationException
1623
+ attr_accessor message: ::String
1624
+ SENSITIVE: []
1625
+ end
1626
+ end
1627
+ end