aws-sdk-lakeformation 1.28.0 → 1.30.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-lakeformation/client.rb +7 -2
- data/lib/aws-sdk-lakeformation/client_api.rb +10 -2
- data/lib/aws-sdk-lakeformation/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-lakeformation/types.rb +10 -1309
- data/lib/aws-sdk-lakeformation.rb +1 -1
- metadata +2 -2
@@ -24,69 +24,6 @@ module Aws::LakeFormation
|
|
24
24
|
include Aws::Structure
|
25
25
|
end
|
26
26
|
|
27
|
-
# @note When making an API call, you may pass AddLFTagsToResourceRequest
|
28
|
-
# data as a hash:
|
29
|
-
#
|
30
|
-
# {
|
31
|
-
# catalog_id: "CatalogIdString",
|
32
|
-
# resource: { # required
|
33
|
-
# catalog: {
|
34
|
-
# },
|
35
|
-
# database: {
|
36
|
-
# catalog_id: "CatalogIdString",
|
37
|
-
# name: "NameString", # required
|
38
|
-
# },
|
39
|
-
# table: {
|
40
|
-
# catalog_id: "CatalogIdString",
|
41
|
-
# database_name: "NameString", # required
|
42
|
-
# name: "NameString",
|
43
|
-
# table_wildcard: {
|
44
|
-
# },
|
45
|
-
# },
|
46
|
-
# table_with_columns: {
|
47
|
-
# catalog_id: "CatalogIdString",
|
48
|
-
# database_name: "NameString", # required
|
49
|
-
# name: "NameString", # required
|
50
|
-
# column_names: ["NameString"],
|
51
|
-
# column_wildcard: {
|
52
|
-
# excluded_column_names: ["NameString"],
|
53
|
-
# },
|
54
|
-
# },
|
55
|
-
# data_location: {
|
56
|
-
# catalog_id: "CatalogIdString",
|
57
|
-
# resource_arn: "ResourceArnString", # required
|
58
|
-
# },
|
59
|
-
# data_cells_filter: {
|
60
|
-
# table_catalog_id: "CatalogIdString",
|
61
|
-
# database_name: "NameString",
|
62
|
-
# table_name: "NameString",
|
63
|
-
# name: "NameString",
|
64
|
-
# },
|
65
|
-
# lf_tag: {
|
66
|
-
# catalog_id: "CatalogIdString",
|
67
|
-
# tag_key: "NameString", # required
|
68
|
-
# tag_values: ["LFTagValue"], # required
|
69
|
-
# },
|
70
|
-
# lf_tag_policy: {
|
71
|
-
# catalog_id: "CatalogIdString",
|
72
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
73
|
-
# expression: [ # required
|
74
|
-
# {
|
75
|
-
# tag_key: "LFTagKey", # required
|
76
|
-
# tag_values: ["LFTagValue"], # required
|
77
|
-
# },
|
78
|
-
# ],
|
79
|
-
# },
|
80
|
-
# },
|
81
|
-
# lf_tags: [ # required
|
82
|
-
# {
|
83
|
-
# catalog_id: "CatalogIdString",
|
84
|
-
# tag_key: "LFTagKey", # required
|
85
|
-
# tag_values: ["LFTagValue"], # required
|
86
|
-
# },
|
87
|
-
# ],
|
88
|
-
# }
|
89
|
-
#
|
90
27
|
# @!attribute [rw] catalog_id
|
91
28
|
# The identifier for the Data Catalog. By default, the account ID. The
|
92
29
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -127,16 +64,6 @@ module Aws::LakeFormation
|
|
127
64
|
|
128
65
|
# A new object to add to the governed table.
|
129
66
|
#
|
130
|
-
# @note When making an API call, you may pass AddObjectInput
|
131
|
-
# data as a hash:
|
132
|
-
#
|
133
|
-
# {
|
134
|
-
# uri: "URI", # required
|
135
|
-
# etag: "ETagString", # required
|
136
|
-
# size: 1, # required
|
137
|
-
# partition_values: ["PartitionValueString"],
|
138
|
-
# }
|
139
|
-
#
|
140
67
|
# @!attribute [rw] uri
|
141
68
|
# The Amazon S3 location of the object.
|
142
69
|
# @return [String]
|
@@ -192,16 +119,6 @@ module Aws::LakeFormation
|
|
192
119
|
include Aws::Structure
|
193
120
|
end
|
194
121
|
|
195
|
-
# @note When making an API call, you may pass AssumeDecoratedRoleWithSAMLRequest
|
196
|
-
# data as a hash:
|
197
|
-
#
|
198
|
-
# {
|
199
|
-
# saml_assertion: "SAMLAssertionString", # required
|
200
|
-
# role_arn: "IAMRoleArn", # required
|
201
|
-
# principal_arn: "IAMSAMLProviderArn", # required
|
202
|
-
# duration_seconds: 1,
|
203
|
-
# }
|
204
|
-
#
|
205
122
|
# @!attribute [rw] saml_assertion
|
206
123
|
# A SAML assertion consisting of an assertion statement for the user
|
207
124
|
# who needs temporary credentials. This must match the SAML assertion
|
@@ -268,13 +185,6 @@ module Aws::LakeFormation
|
|
268
185
|
# A structure used to include auditing information on the privileged
|
269
186
|
# API.
|
270
187
|
#
|
271
|
-
# @note When making an API call, you may pass AuditContext
|
272
|
-
# data as a hash:
|
273
|
-
#
|
274
|
-
# {
|
275
|
-
# additional_audit_context: "AuditContextString",
|
276
|
-
# }
|
277
|
-
#
|
278
188
|
# @!attribute [rw] additional_audit_context
|
279
189
|
# The filter engine can populate the 'AdditionalAuditContext'
|
280
190
|
# information with the request ID for you to track. This information
|
@@ -289,72 +199,6 @@ module Aws::LakeFormation
|
|
289
199
|
include Aws::Structure
|
290
200
|
end
|
291
201
|
|
292
|
-
# @note When making an API call, you may pass BatchGrantPermissionsRequest
|
293
|
-
# data as a hash:
|
294
|
-
#
|
295
|
-
# {
|
296
|
-
# catalog_id: "CatalogIdString",
|
297
|
-
# entries: [ # required
|
298
|
-
# {
|
299
|
-
# id: "Identifier", # required
|
300
|
-
# principal: {
|
301
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
302
|
-
# },
|
303
|
-
# resource: {
|
304
|
-
# catalog: {
|
305
|
-
# },
|
306
|
-
# database: {
|
307
|
-
# catalog_id: "CatalogIdString",
|
308
|
-
# name: "NameString", # required
|
309
|
-
# },
|
310
|
-
# table: {
|
311
|
-
# catalog_id: "CatalogIdString",
|
312
|
-
# database_name: "NameString", # required
|
313
|
-
# name: "NameString",
|
314
|
-
# table_wildcard: {
|
315
|
-
# },
|
316
|
-
# },
|
317
|
-
# table_with_columns: {
|
318
|
-
# catalog_id: "CatalogIdString",
|
319
|
-
# database_name: "NameString", # required
|
320
|
-
# name: "NameString", # required
|
321
|
-
# column_names: ["NameString"],
|
322
|
-
# column_wildcard: {
|
323
|
-
# excluded_column_names: ["NameString"],
|
324
|
-
# },
|
325
|
-
# },
|
326
|
-
# data_location: {
|
327
|
-
# catalog_id: "CatalogIdString",
|
328
|
-
# resource_arn: "ResourceArnString", # required
|
329
|
-
# },
|
330
|
-
# data_cells_filter: {
|
331
|
-
# table_catalog_id: "CatalogIdString",
|
332
|
-
# database_name: "NameString",
|
333
|
-
# table_name: "NameString",
|
334
|
-
# name: "NameString",
|
335
|
-
# },
|
336
|
-
# lf_tag: {
|
337
|
-
# catalog_id: "CatalogIdString",
|
338
|
-
# tag_key: "NameString", # required
|
339
|
-
# tag_values: ["LFTagValue"], # required
|
340
|
-
# },
|
341
|
-
# lf_tag_policy: {
|
342
|
-
# catalog_id: "CatalogIdString",
|
343
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
344
|
-
# expression: [ # required
|
345
|
-
# {
|
346
|
-
# tag_key: "LFTagKey", # required
|
347
|
-
# tag_values: ["LFTagValue"], # required
|
348
|
-
# },
|
349
|
-
# ],
|
350
|
-
# },
|
351
|
-
# },
|
352
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
353
|
-
# permissions_with_grant_option: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
354
|
-
# },
|
355
|
-
# ],
|
356
|
-
# }
|
357
|
-
#
|
358
202
|
# @!attribute [rw] catalog_id
|
359
203
|
# The identifier for the Data Catalog. By default, the account ID. The
|
360
204
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -411,67 +255,6 @@ module Aws::LakeFormation
|
|
411
255
|
# A permission to a resource granted by batch operation to the
|
412
256
|
# principal.
|
413
257
|
#
|
414
|
-
# @note When making an API call, you may pass BatchPermissionsRequestEntry
|
415
|
-
# data as a hash:
|
416
|
-
#
|
417
|
-
# {
|
418
|
-
# id: "Identifier", # required
|
419
|
-
# principal: {
|
420
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
421
|
-
# },
|
422
|
-
# resource: {
|
423
|
-
# catalog: {
|
424
|
-
# },
|
425
|
-
# database: {
|
426
|
-
# catalog_id: "CatalogIdString",
|
427
|
-
# name: "NameString", # required
|
428
|
-
# },
|
429
|
-
# table: {
|
430
|
-
# catalog_id: "CatalogIdString",
|
431
|
-
# database_name: "NameString", # required
|
432
|
-
# name: "NameString",
|
433
|
-
# table_wildcard: {
|
434
|
-
# },
|
435
|
-
# },
|
436
|
-
# table_with_columns: {
|
437
|
-
# catalog_id: "CatalogIdString",
|
438
|
-
# database_name: "NameString", # required
|
439
|
-
# name: "NameString", # required
|
440
|
-
# column_names: ["NameString"],
|
441
|
-
# column_wildcard: {
|
442
|
-
# excluded_column_names: ["NameString"],
|
443
|
-
# },
|
444
|
-
# },
|
445
|
-
# data_location: {
|
446
|
-
# catalog_id: "CatalogIdString",
|
447
|
-
# resource_arn: "ResourceArnString", # required
|
448
|
-
# },
|
449
|
-
# data_cells_filter: {
|
450
|
-
# table_catalog_id: "CatalogIdString",
|
451
|
-
# database_name: "NameString",
|
452
|
-
# table_name: "NameString",
|
453
|
-
# name: "NameString",
|
454
|
-
# },
|
455
|
-
# lf_tag: {
|
456
|
-
# catalog_id: "CatalogIdString",
|
457
|
-
# tag_key: "NameString", # required
|
458
|
-
# tag_values: ["LFTagValue"], # required
|
459
|
-
# },
|
460
|
-
# lf_tag_policy: {
|
461
|
-
# catalog_id: "CatalogIdString",
|
462
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
463
|
-
# expression: [ # required
|
464
|
-
# {
|
465
|
-
# tag_key: "LFTagKey", # required
|
466
|
-
# tag_values: ["LFTagValue"], # required
|
467
|
-
# },
|
468
|
-
# ],
|
469
|
-
# },
|
470
|
-
# },
|
471
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
472
|
-
# permissions_with_grant_option: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
473
|
-
# }
|
474
|
-
#
|
475
258
|
# @!attribute [rw] id
|
476
259
|
# A unique identifier for the batch permissions request entry.
|
477
260
|
# @return [String]
|
@@ -504,72 +287,6 @@ module Aws::LakeFormation
|
|
504
287
|
include Aws::Structure
|
505
288
|
end
|
506
289
|
|
507
|
-
# @note When making an API call, you may pass BatchRevokePermissionsRequest
|
508
|
-
# data as a hash:
|
509
|
-
#
|
510
|
-
# {
|
511
|
-
# catalog_id: "CatalogIdString",
|
512
|
-
# entries: [ # required
|
513
|
-
# {
|
514
|
-
# id: "Identifier", # required
|
515
|
-
# principal: {
|
516
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
517
|
-
# },
|
518
|
-
# resource: {
|
519
|
-
# catalog: {
|
520
|
-
# },
|
521
|
-
# database: {
|
522
|
-
# catalog_id: "CatalogIdString",
|
523
|
-
# name: "NameString", # required
|
524
|
-
# },
|
525
|
-
# table: {
|
526
|
-
# catalog_id: "CatalogIdString",
|
527
|
-
# database_name: "NameString", # required
|
528
|
-
# name: "NameString",
|
529
|
-
# table_wildcard: {
|
530
|
-
# },
|
531
|
-
# },
|
532
|
-
# table_with_columns: {
|
533
|
-
# catalog_id: "CatalogIdString",
|
534
|
-
# database_name: "NameString", # required
|
535
|
-
# name: "NameString", # required
|
536
|
-
# column_names: ["NameString"],
|
537
|
-
# column_wildcard: {
|
538
|
-
# excluded_column_names: ["NameString"],
|
539
|
-
# },
|
540
|
-
# },
|
541
|
-
# data_location: {
|
542
|
-
# catalog_id: "CatalogIdString",
|
543
|
-
# resource_arn: "ResourceArnString", # required
|
544
|
-
# },
|
545
|
-
# data_cells_filter: {
|
546
|
-
# table_catalog_id: "CatalogIdString",
|
547
|
-
# database_name: "NameString",
|
548
|
-
# table_name: "NameString",
|
549
|
-
# name: "NameString",
|
550
|
-
# },
|
551
|
-
# lf_tag: {
|
552
|
-
# catalog_id: "CatalogIdString",
|
553
|
-
# tag_key: "NameString", # required
|
554
|
-
# tag_values: ["LFTagValue"], # required
|
555
|
-
# },
|
556
|
-
# lf_tag_policy: {
|
557
|
-
# catalog_id: "CatalogIdString",
|
558
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
559
|
-
# expression: [ # required
|
560
|
-
# {
|
561
|
-
# tag_key: "LFTagKey", # required
|
562
|
-
# tag_values: ["LFTagValue"], # required
|
563
|
-
# },
|
564
|
-
# ],
|
565
|
-
# },
|
566
|
-
# },
|
567
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
568
|
-
# permissions_with_grant_option: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
569
|
-
# },
|
570
|
-
# ],
|
571
|
-
# }
|
572
|
-
#
|
573
290
|
# @!attribute [rw] catalog_id
|
574
291
|
# The identifier for the Data Catalog. By default, the account ID. The
|
575
292
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -603,13 +320,6 @@ module Aws::LakeFormation
|
|
603
320
|
include Aws::Structure
|
604
321
|
end
|
605
322
|
|
606
|
-
# @note When making an API call, you may pass CancelTransactionRequest
|
607
|
-
# data as a hash:
|
608
|
-
#
|
609
|
-
# {
|
610
|
-
# transaction_id: "TransactionIdString", # required
|
611
|
-
# }
|
612
|
-
#
|
613
323
|
# @!attribute [rw] transaction_id
|
614
324
|
# The transaction to cancel.
|
615
325
|
# @return [String]
|
@@ -657,13 +367,6 @@ module Aws::LakeFormation
|
|
657
367
|
# A wildcard object, consisting of an optional list of excluded column
|
658
368
|
# names or indexes.
|
659
369
|
#
|
660
|
-
# @note When making an API call, you may pass ColumnWildcard
|
661
|
-
# data as a hash:
|
662
|
-
#
|
663
|
-
# {
|
664
|
-
# excluded_column_names: ["NameString"],
|
665
|
-
# }
|
666
|
-
#
|
667
370
|
# @!attribute [rw] excluded_column_names
|
668
371
|
# Excludes column names. Any column with this name will be excluded.
|
669
372
|
# @return [Array<String>]
|
@@ -676,13 +379,6 @@ module Aws::LakeFormation
|
|
676
379
|
include Aws::Structure
|
677
380
|
end
|
678
381
|
|
679
|
-
# @note When making an API call, you may pass CommitTransactionRequest
|
680
|
-
# data as a hash:
|
681
|
-
#
|
682
|
-
# {
|
683
|
-
# transaction_id: "TransactionIdString", # required
|
684
|
-
# }
|
685
|
-
#
|
686
382
|
# @!attribute [rw] transaction_id
|
687
383
|
# The transaction to commit.
|
688
384
|
# @return [String]
|
@@ -721,27 +417,6 @@ module Aws::LakeFormation
|
|
721
417
|
include Aws::Structure
|
722
418
|
end
|
723
419
|
|
724
|
-
# @note When making an API call, you may pass CreateDataCellsFilterRequest
|
725
|
-
# data as a hash:
|
726
|
-
#
|
727
|
-
# {
|
728
|
-
# table_data: { # required
|
729
|
-
# table_catalog_id: "CatalogIdString", # required
|
730
|
-
# database_name: "NameString", # required
|
731
|
-
# table_name: "NameString", # required
|
732
|
-
# name: "NameString", # required
|
733
|
-
# row_filter: {
|
734
|
-
# filter_expression: "PredicateString",
|
735
|
-
# all_rows_wildcard: {
|
736
|
-
# },
|
737
|
-
# },
|
738
|
-
# column_names: ["NameString"],
|
739
|
-
# column_wildcard: {
|
740
|
-
# excluded_column_names: ["NameString"],
|
741
|
-
# },
|
742
|
-
# },
|
743
|
-
# }
|
744
|
-
#
|
745
420
|
# @!attribute [rw] table_data
|
746
421
|
# A `DataCellsFilter` structure containing information about the data
|
747
422
|
# cells filter.
|
@@ -759,15 +434,6 @@ module Aws::LakeFormation
|
|
759
434
|
#
|
760
435
|
class CreateDataCellsFilterResponse < Aws::EmptyStructure; end
|
761
436
|
|
762
|
-
# @note When making an API call, you may pass CreateLFTagRequest
|
763
|
-
# data as a hash:
|
764
|
-
#
|
765
|
-
# {
|
766
|
-
# catalog_id: "CatalogIdString",
|
767
|
-
# tag_key: "LFTagKey", # required
|
768
|
-
# tag_values: ["LFTagValue"], # required
|
769
|
-
# }
|
770
|
-
#
|
771
437
|
# @!attribute [rw] catalog_id
|
772
438
|
# The identifier for the Data Catalog. By default, the account ID. The
|
773
439
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -799,25 +465,6 @@ module Aws::LakeFormation
|
|
799
465
|
|
800
466
|
# A structure that describes certain columns on certain rows.
|
801
467
|
#
|
802
|
-
# @note When making an API call, you may pass DataCellsFilter
|
803
|
-
# data as a hash:
|
804
|
-
#
|
805
|
-
# {
|
806
|
-
# table_catalog_id: "CatalogIdString", # required
|
807
|
-
# database_name: "NameString", # required
|
808
|
-
# table_name: "NameString", # required
|
809
|
-
# name: "NameString", # required
|
810
|
-
# row_filter: {
|
811
|
-
# filter_expression: "PredicateString",
|
812
|
-
# all_rows_wildcard: {
|
813
|
-
# },
|
814
|
-
# },
|
815
|
-
# column_names: ["NameString"],
|
816
|
-
# column_wildcard: {
|
817
|
-
# excluded_column_names: ["NameString"],
|
818
|
-
# },
|
819
|
-
# }
|
820
|
-
#
|
821
468
|
# @!attribute [rw] table_catalog_id
|
822
469
|
# The ID of the catalog to which the table belongs.
|
823
470
|
# @return [String]
|
@@ -865,16 +512,6 @@ module Aws::LakeFormation
|
|
865
512
|
|
866
513
|
# A structure for a data cells filter resource.
|
867
514
|
#
|
868
|
-
# @note When making an API call, you may pass DataCellsFilterResource
|
869
|
-
# data as a hash:
|
870
|
-
#
|
871
|
-
# {
|
872
|
-
# table_catalog_id: "CatalogIdString",
|
873
|
-
# database_name: "NameString",
|
874
|
-
# table_name: "NameString",
|
875
|
-
# name: "NameString",
|
876
|
-
# }
|
877
|
-
#
|
878
515
|
# @!attribute [rw] table_catalog_id
|
879
516
|
# The ID of the catalog to which the table belongs.
|
880
517
|
# @return [String]
|
@@ -905,13 +542,6 @@ module Aws::LakeFormation
|
|
905
542
|
# The Lake Formation principal. Supported principals are IAM users or
|
906
543
|
# IAM roles.
|
907
544
|
#
|
908
|
-
# @note When making an API call, you may pass DataLakePrincipal
|
909
|
-
# data as a hash:
|
910
|
-
#
|
911
|
-
# {
|
912
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
913
|
-
# }
|
914
|
-
#
|
915
545
|
# @!attribute [rw] data_lake_principal_identifier
|
916
546
|
# An identifier for the Lake Formation principal.
|
917
547
|
# @return [String]
|
@@ -929,41 +559,6 @@ module Aws::LakeFormation
|
|
929
559
|
# permission entries for default create database and default create
|
930
560
|
# table permissions.
|
931
561
|
#
|
932
|
-
# @note When making an API call, you may pass DataLakeSettings
|
933
|
-
# data as a hash:
|
934
|
-
#
|
935
|
-
# {
|
936
|
-
# data_lake_admins: [
|
937
|
-
# {
|
938
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
939
|
-
# },
|
940
|
-
# ],
|
941
|
-
# create_database_default_permissions: [
|
942
|
-
# {
|
943
|
-
# principal: {
|
944
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
945
|
-
# },
|
946
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
947
|
-
# },
|
948
|
-
# ],
|
949
|
-
# create_table_default_permissions: [
|
950
|
-
# {
|
951
|
-
# principal: {
|
952
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
953
|
-
# },
|
954
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
955
|
-
# },
|
956
|
-
# ],
|
957
|
-
# trusted_resource_owners: ["CatalogIdString"],
|
958
|
-
# allow_external_data_filtering: false,
|
959
|
-
# external_data_filtering_allow_list: [
|
960
|
-
# {
|
961
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
962
|
-
# },
|
963
|
-
# ],
|
964
|
-
# authorized_session_tag_value_list: ["NameString"],
|
965
|
-
# }
|
966
|
-
#
|
967
562
|
# @!attribute [rw] data_lake_admins
|
968
563
|
# A list of Lake Formation principals. Supported principals are IAM
|
969
564
|
# users or IAM roles.
|
@@ -972,8 +567,7 @@ module Aws::LakeFormation
|
|
972
567
|
# @!attribute [rw] create_database_default_permissions
|
973
568
|
# Specifies whether access control on newly created database is
|
974
569
|
# managed by Lake Formation permissions or exclusively by IAM
|
975
|
-
# permissions.
|
976
|
-
# database.
|
570
|
+
# permissions.
|
977
571
|
#
|
978
572
|
# A null value indicates access control by Lake Formation permissions.
|
979
573
|
# A value that assigns ALL to IAM\_ALLOWED\_PRINCIPALS indicates
|
@@ -1017,6 +611,13 @@ module Aws::LakeFormation
|
|
1017
611
|
# [1]: https://docs.aws.amazon.com/lake-formation/latest/dg/change-settings.html
|
1018
612
|
# @return [Array<Types::PrincipalPermissions>]
|
1019
613
|
#
|
614
|
+
# @!attribute [rw] parameters
|
615
|
+
# A key-value map that provides an additional configuration on your
|
616
|
+
# data lake. CrossAccountVersion is the key you can configure in the
|
617
|
+
# Parameters field. Accepted values for the CrossAccountVersion key
|
618
|
+
# are 1, 2, and 3.
|
619
|
+
# @return [Hash<String,String>]
|
620
|
+
#
|
1020
621
|
# @!attribute [rw] trusted_resource_owners
|
1021
622
|
# A list of the resource-owning account IDs that the caller's account
|
1022
623
|
# can use to share their user access details (user ARNs). The user
|
@@ -1065,6 +666,7 @@ module Aws::LakeFormation
|
|
1065
666
|
:data_lake_admins,
|
1066
667
|
:create_database_default_permissions,
|
1067
668
|
:create_table_default_permissions,
|
669
|
+
:parameters,
|
1068
670
|
:trusted_resource_owners,
|
1069
671
|
:allow_external_data_filtering,
|
1070
672
|
:external_data_filtering_allow_list,
|
@@ -1076,14 +678,6 @@ module Aws::LakeFormation
|
|
1076
678
|
# A structure for a data location object where permissions are granted
|
1077
679
|
# or revoked.
|
1078
680
|
#
|
1079
|
-
# @note When making an API call, you may pass DataLocationResource
|
1080
|
-
# data as a hash:
|
1081
|
-
#
|
1082
|
-
# {
|
1083
|
-
# catalog_id: "CatalogIdString",
|
1084
|
-
# resource_arn: "ResourceArnString", # required
|
1085
|
-
# }
|
1086
|
-
#
|
1087
681
|
# @!attribute [rw] catalog_id
|
1088
682
|
# The identifier for the Data Catalog where the location is registered
|
1089
683
|
# with Lake Formation. By default, it is the account ID of the caller.
|
@@ -1105,14 +699,6 @@ module Aws::LakeFormation
|
|
1105
699
|
|
1106
700
|
# A structure for the database object.
|
1107
701
|
#
|
1108
|
-
# @note When making an API call, you may pass DatabaseResource
|
1109
|
-
# data as a hash:
|
1110
|
-
#
|
1111
|
-
# {
|
1112
|
-
# catalog_id: "CatalogIdString",
|
1113
|
-
# name: "NameString", # required
|
1114
|
-
# }
|
1115
|
-
#
|
1116
702
|
# @!attribute [rw] catalog_id
|
1117
703
|
# The identifier for the Data Catalog. By default, it is the account
|
1118
704
|
# ID of the caller.
|
@@ -1131,16 +717,6 @@ module Aws::LakeFormation
|
|
1131
717
|
include Aws::Structure
|
1132
718
|
end
|
1133
719
|
|
1134
|
-
# @note When making an API call, you may pass DeleteDataCellsFilterRequest
|
1135
|
-
# data as a hash:
|
1136
|
-
#
|
1137
|
-
# {
|
1138
|
-
# table_catalog_id: "CatalogIdString",
|
1139
|
-
# database_name: "NameString",
|
1140
|
-
# table_name: "NameString",
|
1141
|
-
# name: "NameString",
|
1142
|
-
# }
|
1143
|
-
#
|
1144
720
|
# @!attribute [rw] table_catalog_id
|
1145
721
|
# The ID of the catalog to which the table belongs.
|
1146
722
|
# @return [String]
|
@@ -1172,14 +748,6 @@ module Aws::LakeFormation
|
|
1172
748
|
#
|
1173
749
|
class DeleteDataCellsFilterResponse < Aws::EmptyStructure; end
|
1174
750
|
|
1175
|
-
# @note When making an API call, you may pass DeleteLFTagRequest
|
1176
|
-
# data as a hash:
|
1177
|
-
#
|
1178
|
-
# {
|
1179
|
-
# catalog_id: "CatalogIdString",
|
1180
|
-
# tag_key: "LFTagKey", # required
|
1181
|
-
# }
|
1182
|
-
#
|
1183
751
|
# @!attribute [rw] catalog_id
|
1184
752
|
# The identifier for the Data Catalog. By default, the account ID. The
|
1185
753
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -1206,15 +774,6 @@ module Aws::LakeFormation
|
|
1206
774
|
|
1207
775
|
# An object to delete from the governed table.
|
1208
776
|
#
|
1209
|
-
# @note When making an API call, you may pass DeleteObjectInput
|
1210
|
-
# data as a hash:
|
1211
|
-
#
|
1212
|
-
# {
|
1213
|
-
# uri: "URI", # required
|
1214
|
-
# etag: "ETagString",
|
1215
|
-
# partition_values: ["PartitionValueString"],
|
1216
|
-
# }
|
1217
|
-
#
|
1218
777
|
# @!attribute [rw] uri
|
1219
778
|
# The Amazon S3 location of the object to delete.
|
1220
779
|
# @return [String]
|
@@ -1239,22 +798,6 @@ module Aws::LakeFormation
|
|
1239
798
|
include Aws::Structure
|
1240
799
|
end
|
1241
800
|
|
1242
|
-
# @note When making an API call, you may pass DeleteObjectsOnCancelRequest
|
1243
|
-
# data as a hash:
|
1244
|
-
#
|
1245
|
-
# {
|
1246
|
-
# catalog_id: "CatalogIdString",
|
1247
|
-
# database_name: "NameString", # required
|
1248
|
-
# table_name: "NameString", # required
|
1249
|
-
# transaction_id: "TransactionIdString", # required
|
1250
|
-
# objects: [ # required
|
1251
|
-
# {
|
1252
|
-
# uri: "URI", # required
|
1253
|
-
# etag: "ETagString",
|
1254
|
-
# },
|
1255
|
-
# ],
|
1256
|
-
# }
|
1257
|
-
#
|
1258
801
|
# @!attribute [rw] catalog_id
|
1259
802
|
# The Glue data catalog that contains the governed table. Defaults to
|
1260
803
|
# the current account ID.
|
@@ -1293,13 +836,6 @@ module Aws::LakeFormation
|
|
1293
836
|
#
|
1294
837
|
class DeleteObjectsOnCancelResponse < Aws::EmptyStructure; end
|
1295
838
|
|
1296
|
-
# @note When making an API call, you may pass DeregisterResourceRequest
|
1297
|
-
# data as a hash:
|
1298
|
-
#
|
1299
|
-
# {
|
1300
|
-
# resource_arn: "ResourceArnString", # required
|
1301
|
-
# }
|
1302
|
-
#
|
1303
839
|
# @!attribute [rw] resource_arn
|
1304
840
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
1305
841
|
# deregister.
|
@@ -1317,13 +853,6 @@ module Aws::LakeFormation
|
|
1317
853
|
#
|
1318
854
|
class DeregisterResourceResponse < Aws::EmptyStructure; end
|
1319
855
|
|
1320
|
-
# @note When making an API call, you may pass DescribeResourceRequest
|
1321
|
-
# data as a hash:
|
1322
|
-
#
|
1323
|
-
# {
|
1324
|
-
# resource_arn: "ResourceArnString", # required
|
1325
|
-
# }
|
1326
|
-
#
|
1327
856
|
# @!attribute [rw] resource_arn
|
1328
857
|
# The resource ARN.
|
1329
858
|
# @return [String]
|
@@ -1348,13 +877,6 @@ module Aws::LakeFormation
|
|
1348
877
|
include Aws::Structure
|
1349
878
|
end
|
1350
879
|
|
1351
|
-
# @note When making an API call, you may pass DescribeTransactionRequest
|
1352
|
-
# data as a hash:
|
1353
|
-
#
|
1354
|
-
# {
|
1355
|
-
# transaction_id: "TransactionIdString", # required
|
1356
|
-
# }
|
1357
|
-
#
|
1358
880
|
# @!attribute [rw] transaction_id
|
1359
881
|
# The transaction for which to return status.
|
1360
882
|
# @return [String]
|
@@ -1469,13 +991,6 @@ module Aws::LakeFormation
|
|
1469
991
|
include Aws::Structure
|
1470
992
|
end
|
1471
993
|
|
1472
|
-
# @note When making an API call, you may pass ExtendTransactionRequest
|
1473
|
-
# data as a hash:
|
1474
|
-
#
|
1475
|
-
# {
|
1476
|
-
# transaction_id: "TransactionIdString",
|
1477
|
-
# }
|
1478
|
-
#
|
1479
994
|
# @!attribute [rw] transaction_id
|
1480
995
|
# The transaction to extend.
|
1481
996
|
# @return [String]
|
@@ -1495,15 +1010,6 @@ module Aws::LakeFormation
|
|
1495
1010
|
# This structure describes the filtering of columns in a table based on
|
1496
1011
|
# a filter condition.
|
1497
1012
|
#
|
1498
|
-
# @note When making an API call, you may pass FilterCondition
|
1499
|
-
# data as a hash:
|
1500
|
-
#
|
1501
|
-
# {
|
1502
|
-
# field: "RESOURCE_ARN", # accepts RESOURCE_ARN, ROLE_ARN, LAST_MODIFIED
|
1503
|
-
# comparison_operator: "EQ", # accepts EQ, NE, LE, LT, GE, GT, CONTAINS, NOT_CONTAINS, BEGINS_WITH, IN, BETWEEN
|
1504
|
-
# string_value_list: ["StringValue"],
|
1505
|
-
# }
|
1506
|
-
#
|
1507
1013
|
# @!attribute [rw] field
|
1508
1014
|
# The field to filter in the filter condition.
|
1509
1015
|
# @return [String]
|
@@ -1526,13 +1032,6 @@ module Aws::LakeFormation
|
|
1526
1032
|
include Aws::Structure
|
1527
1033
|
end
|
1528
1034
|
|
1529
|
-
# @note When making an API call, you may pass GetDataLakeSettingsRequest
|
1530
|
-
# data as a hash:
|
1531
|
-
#
|
1532
|
-
# {
|
1533
|
-
# catalog_id: "CatalogIdString",
|
1534
|
-
# }
|
1535
|
-
#
|
1536
1035
|
# @!attribute [rw] catalog_id
|
1537
1036
|
# The identifier for the Data Catalog. By default, the account ID. The
|
1538
1037
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -1561,16 +1060,6 @@ module Aws::LakeFormation
|
|
1561
1060
|
include Aws::Structure
|
1562
1061
|
end
|
1563
1062
|
|
1564
|
-
# @note When making an API call, you may pass GetEffectivePermissionsForPathRequest
|
1565
|
-
# data as a hash:
|
1566
|
-
#
|
1567
|
-
# {
|
1568
|
-
# catalog_id: "CatalogIdString",
|
1569
|
-
# resource_arn: "ResourceArnString", # required
|
1570
|
-
# next_token: "Token",
|
1571
|
-
# max_results: 1,
|
1572
|
-
# }
|
1573
|
-
#
|
1574
1063
|
# @!attribute [rw] catalog_id
|
1575
1064
|
# The identifier for the Data Catalog. By default, the account ID. The
|
1576
1065
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -1622,14 +1111,6 @@ module Aws::LakeFormation
|
|
1622
1111
|
include Aws::Structure
|
1623
1112
|
end
|
1624
1113
|
|
1625
|
-
# @note When making an API call, you may pass GetLFTagRequest
|
1626
|
-
# data as a hash:
|
1627
|
-
#
|
1628
|
-
# {
|
1629
|
-
# catalog_id: "CatalogIdString",
|
1630
|
-
# tag_key: "LFTagKey", # required
|
1631
|
-
# }
|
1632
|
-
#
|
1633
1114
|
# @!attribute [rw] catalog_id
|
1634
1115
|
# The identifier for the Data Catalog. By default, the account ID. The
|
1635
1116
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -1675,13 +1156,6 @@ module Aws::LakeFormation
|
|
1675
1156
|
include Aws::Structure
|
1676
1157
|
end
|
1677
1158
|
|
1678
|
-
# @note When making an API call, you may pass GetQueryStateRequest
|
1679
|
-
# data as a hash:
|
1680
|
-
#
|
1681
|
-
# {
|
1682
|
-
# query_id: "GetQueryStateRequestQueryIdString", # required
|
1683
|
-
# }
|
1684
|
-
#
|
1685
1159
|
# @!attribute [rw] query_id
|
1686
1160
|
# The ID of the plan query operation.
|
1687
1161
|
# @return [String]
|
@@ -1724,13 +1198,6 @@ module Aws::LakeFormation
|
|
1724
1198
|
include Aws::Structure
|
1725
1199
|
end
|
1726
1200
|
|
1727
|
-
# @note When making an API call, you may pass GetQueryStatisticsRequest
|
1728
|
-
# data as a hash:
|
1729
|
-
#
|
1730
|
-
# {
|
1731
|
-
# query_id: "GetQueryStatisticsRequestQueryIdString", # required
|
1732
|
-
# }
|
1733
|
-
#
|
1734
1201
|
# @!attribute [rw] query_id
|
1735
1202
|
# The ID of the plan query operation.
|
1736
1203
|
# @return [String]
|
@@ -1766,63 +1233,6 @@ module Aws::LakeFormation
|
|
1766
1233
|
include Aws::Structure
|
1767
1234
|
end
|
1768
1235
|
|
1769
|
-
# @note When making an API call, you may pass GetResourceLFTagsRequest
|
1770
|
-
# data as a hash:
|
1771
|
-
#
|
1772
|
-
# {
|
1773
|
-
# catalog_id: "CatalogIdString",
|
1774
|
-
# resource: { # required
|
1775
|
-
# catalog: {
|
1776
|
-
# },
|
1777
|
-
# database: {
|
1778
|
-
# catalog_id: "CatalogIdString",
|
1779
|
-
# name: "NameString", # required
|
1780
|
-
# },
|
1781
|
-
# table: {
|
1782
|
-
# catalog_id: "CatalogIdString",
|
1783
|
-
# database_name: "NameString", # required
|
1784
|
-
# name: "NameString",
|
1785
|
-
# table_wildcard: {
|
1786
|
-
# },
|
1787
|
-
# },
|
1788
|
-
# table_with_columns: {
|
1789
|
-
# catalog_id: "CatalogIdString",
|
1790
|
-
# database_name: "NameString", # required
|
1791
|
-
# name: "NameString", # required
|
1792
|
-
# column_names: ["NameString"],
|
1793
|
-
# column_wildcard: {
|
1794
|
-
# excluded_column_names: ["NameString"],
|
1795
|
-
# },
|
1796
|
-
# },
|
1797
|
-
# data_location: {
|
1798
|
-
# catalog_id: "CatalogIdString",
|
1799
|
-
# resource_arn: "ResourceArnString", # required
|
1800
|
-
# },
|
1801
|
-
# data_cells_filter: {
|
1802
|
-
# table_catalog_id: "CatalogIdString",
|
1803
|
-
# database_name: "NameString",
|
1804
|
-
# table_name: "NameString",
|
1805
|
-
# name: "NameString",
|
1806
|
-
# },
|
1807
|
-
# lf_tag: {
|
1808
|
-
# catalog_id: "CatalogIdString",
|
1809
|
-
# tag_key: "NameString", # required
|
1810
|
-
# tag_values: ["LFTagValue"], # required
|
1811
|
-
# },
|
1812
|
-
# lf_tag_policy: {
|
1813
|
-
# catalog_id: "CatalogIdString",
|
1814
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
1815
|
-
# expression: [ # required
|
1816
|
-
# {
|
1817
|
-
# tag_key: "LFTagKey", # required
|
1818
|
-
# tag_values: ["LFTagValue"], # required
|
1819
|
-
# },
|
1820
|
-
# ],
|
1821
|
-
# },
|
1822
|
-
# },
|
1823
|
-
# show_assigned_lf_tags: false,
|
1824
|
-
# }
|
1825
|
-
#
|
1826
1236
|
# @!attribute [rw] catalog_id
|
1827
1237
|
# The identifier for the Data Catalog. By default, the account ID. The
|
1828
1238
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -1871,20 +1281,6 @@ module Aws::LakeFormation
|
|
1871
1281
|
include Aws::Structure
|
1872
1282
|
end
|
1873
1283
|
|
1874
|
-
# @note When making an API call, you may pass GetTableObjectsRequest
|
1875
|
-
# data as a hash:
|
1876
|
-
#
|
1877
|
-
# {
|
1878
|
-
# catalog_id: "CatalogIdString",
|
1879
|
-
# database_name: "NameString", # required
|
1880
|
-
# table_name: "NameString", # required
|
1881
|
-
# transaction_id: "TransactionIdString",
|
1882
|
-
# query_as_of_time: Time.now,
|
1883
|
-
# partition_predicate: "PredicateString",
|
1884
|
-
# max_results: 1,
|
1885
|
-
# next_token: "TokenString",
|
1886
|
-
# }
|
1887
|
-
#
|
1888
1284
|
# @!attribute [rw] catalog_id
|
1889
1285
|
# The catalog containing the governed table. Defaults to the caller’s
|
1890
1286
|
# account.
|
@@ -1967,22 +1363,6 @@ module Aws::LakeFormation
|
|
1967
1363
|
include Aws::Structure
|
1968
1364
|
end
|
1969
1365
|
|
1970
|
-
# @note When making an API call, you may pass GetTemporaryGluePartitionCredentialsRequest
|
1971
|
-
# data as a hash:
|
1972
|
-
#
|
1973
|
-
# {
|
1974
|
-
# table_arn: "ResourceArnString", # required
|
1975
|
-
# partition: { # required
|
1976
|
-
# values: ["ValueString"], # required
|
1977
|
-
# },
|
1978
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
1979
|
-
# duration_seconds: 1,
|
1980
|
-
# audit_context: {
|
1981
|
-
# additional_audit_context: "AuditContextString",
|
1982
|
-
# },
|
1983
|
-
# supported_permission_types: ["COLUMN_PERMISSION"], # required, accepts COLUMN_PERMISSION, CELL_FILTER_PERMISSION
|
1984
|
-
# }
|
1985
|
-
#
|
1986
1366
|
# @!attribute [rw] table_arn
|
1987
1367
|
# The ARN of the partitions' table.
|
1988
1368
|
# @return [String]
|
@@ -2051,19 +1431,6 @@ module Aws::LakeFormation
|
|
2051
1431
|
include Aws::Structure
|
2052
1432
|
end
|
2053
1433
|
|
2054
|
-
# @note When making an API call, you may pass GetTemporaryGlueTableCredentialsRequest
|
2055
|
-
# data as a hash:
|
2056
|
-
#
|
2057
|
-
# {
|
2058
|
-
# table_arn: "ResourceArnString", # required
|
2059
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
2060
|
-
# duration_seconds: 1,
|
2061
|
-
# audit_context: {
|
2062
|
-
# additional_audit_context: "AuditContextString",
|
2063
|
-
# },
|
2064
|
-
# supported_permission_types: ["COLUMN_PERMISSION"], # required, accepts COLUMN_PERMISSION, CELL_FILTER_PERMISSION
|
2065
|
-
# }
|
2066
|
-
#
|
2067
1434
|
# @!attribute [rw] table_arn
|
2068
1435
|
# The ARN identifying a table in the Data Catalog for the temporary
|
2069
1436
|
# credentials request.
|
@@ -2128,15 +1495,6 @@ module Aws::LakeFormation
|
|
2128
1495
|
include Aws::Structure
|
2129
1496
|
end
|
2130
1497
|
|
2131
|
-
# @note When making an API call, you may pass GetWorkUnitResultsRequest
|
2132
|
-
# data as a hash:
|
2133
|
-
#
|
2134
|
-
# {
|
2135
|
-
# query_id: "GetWorkUnitResultsRequestQueryIdString", # required
|
2136
|
-
# work_unit_id: 1, # required
|
2137
|
-
# work_unit_token: "SyntheticGetWorkUnitResultsRequestWorkUnitTokenString", # required
|
2138
|
-
# }
|
2139
|
-
#
|
2140
1498
|
# @!attribute [rw] query_id
|
2141
1499
|
# The ID of the plan query operation for which to get results.
|
2142
1500
|
# @return [String]
|
@@ -2177,15 +1535,6 @@ module Aws::LakeFormation
|
|
2177
1535
|
include Aws::Structure
|
2178
1536
|
end
|
2179
1537
|
|
2180
|
-
# @note When making an API call, you may pass GetWorkUnitsRequest
|
2181
|
-
# data as a hash:
|
2182
|
-
#
|
2183
|
-
# {
|
2184
|
-
# next_token: "Token",
|
2185
|
-
# page_size: 1,
|
2186
|
-
# query_id: "GetWorkUnitsRequestQueryIdString", # required
|
2187
|
-
# }
|
2188
|
-
#
|
2189
1538
|
# @!attribute [rw] next_token
|
2190
1539
|
# A continuation token, if this is a continuation call.
|
2191
1540
|
# @return [String]
|
@@ -2253,67 +1602,6 @@ module Aws::LakeFormation
|
|
2253
1602
|
include Aws::Structure
|
2254
1603
|
end
|
2255
1604
|
|
2256
|
-
# @note When making an API call, you may pass GrantPermissionsRequest
|
2257
|
-
# data as a hash:
|
2258
|
-
#
|
2259
|
-
# {
|
2260
|
-
# catalog_id: "CatalogIdString",
|
2261
|
-
# principal: { # required
|
2262
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
2263
|
-
# },
|
2264
|
-
# resource: { # required
|
2265
|
-
# catalog: {
|
2266
|
-
# },
|
2267
|
-
# database: {
|
2268
|
-
# catalog_id: "CatalogIdString",
|
2269
|
-
# name: "NameString", # required
|
2270
|
-
# },
|
2271
|
-
# table: {
|
2272
|
-
# catalog_id: "CatalogIdString",
|
2273
|
-
# database_name: "NameString", # required
|
2274
|
-
# name: "NameString",
|
2275
|
-
# table_wildcard: {
|
2276
|
-
# },
|
2277
|
-
# },
|
2278
|
-
# table_with_columns: {
|
2279
|
-
# catalog_id: "CatalogIdString",
|
2280
|
-
# database_name: "NameString", # required
|
2281
|
-
# name: "NameString", # required
|
2282
|
-
# column_names: ["NameString"],
|
2283
|
-
# column_wildcard: {
|
2284
|
-
# excluded_column_names: ["NameString"],
|
2285
|
-
# },
|
2286
|
-
# },
|
2287
|
-
# data_location: {
|
2288
|
-
# catalog_id: "CatalogIdString",
|
2289
|
-
# resource_arn: "ResourceArnString", # required
|
2290
|
-
# },
|
2291
|
-
# data_cells_filter: {
|
2292
|
-
# table_catalog_id: "CatalogIdString",
|
2293
|
-
# database_name: "NameString",
|
2294
|
-
# table_name: "NameString",
|
2295
|
-
# name: "NameString",
|
2296
|
-
# },
|
2297
|
-
# lf_tag: {
|
2298
|
-
# catalog_id: "CatalogIdString",
|
2299
|
-
# tag_key: "NameString", # required
|
2300
|
-
# tag_values: ["LFTagValue"], # required
|
2301
|
-
# },
|
2302
|
-
# lf_tag_policy: {
|
2303
|
-
# catalog_id: "CatalogIdString",
|
2304
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
2305
|
-
# expression: [ # required
|
2306
|
-
# {
|
2307
|
-
# tag_key: "LFTagKey", # required
|
2308
|
-
# tag_values: ["LFTagValue"], # required
|
2309
|
-
# },
|
2310
|
-
# ],
|
2311
|
-
# },
|
2312
|
-
# },
|
2313
|
-
# permissions: ["ALL"], # required, accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
2314
|
-
# permissions_with_grant_option: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
2315
|
-
# }
|
2316
|
-
#
|
2317
1605
|
# @!attribute [rw] catalog_id
|
2318
1606
|
# The identifier for the Data Catalog. By default, the account ID. The
|
2319
1607
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -2398,14 +1686,6 @@ module Aws::LakeFormation
|
|
2398
1686
|
# conditions. For example, granting a role access to all columns that do
|
2399
1687
|
# not have the LF-tag 'PII' in tables that have the LF-tag 'Prod'.
|
2400
1688
|
#
|
2401
|
-
# @note When making an API call, you may pass LFTag
|
2402
|
-
# data as a hash:
|
2403
|
-
#
|
2404
|
-
# {
|
2405
|
-
# tag_key: "LFTagKey", # required
|
2406
|
-
# tag_values: ["LFTagValue"], # required
|
2407
|
-
# }
|
2408
|
-
#
|
2409
1689
|
# @!attribute [rw] tag_key
|
2410
1690
|
# The key-name for the LF-tag.
|
2411
1691
|
# @return [String]
|
@@ -2446,15 +1726,6 @@ module Aws::LakeFormation
|
|
2446
1726
|
|
2447
1727
|
# A structure containing an LF-tag key and values for a resource.
|
2448
1728
|
#
|
2449
|
-
# @note When making an API call, you may pass LFTagKeyResource
|
2450
|
-
# data as a hash:
|
2451
|
-
#
|
2452
|
-
# {
|
2453
|
-
# catalog_id: "CatalogIdString",
|
2454
|
-
# tag_key: "NameString", # required
|
2455
|
-
# tag_values: ["LFTagValue"], # required
|
2456
|
-
# }
|
2457
|
-
#
|
2458
1729
|
# @!attribute [rw] catalog_id
|
2459
1730
|
# The identifier for the Data Catalog. By default, the account ID. The
|
2460
1731
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -2482,15 +1753,6 @@ module Aws::LakeFormation
|
|
2482
1753
|
|
2483
1754
|
# A structure containing an LF-tag key-value pair.
|
2484
1755
|
#
|
2485
|
-
# @note When making an API call, you may pass LFTagPair
|
2486
|
-
# data as a hash:
|
2487
|
-
#
|
2488
|
-
# {
|
2489
|
-
# catalog_id: "CatalogIdString",
|
2490
|
-
# tag_key: "LFTagKey", # required
|
2491
|
-
# tag_values: ["LFTagValue"], # required
|
2492
|
-
# }
|
2493
|
-
#
|
2494
1756
|
# @!attribute [rw] catalog_id
|
2495
1757
|
# The identifier for the Data Catalog. By default, the account ID. The
|
2496
1758
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -2519,20 +1781,6 @@ module Aws::LakeFormation
|
|
2519
1781
|
# A structure containing a list of LF-tag conditions that apply to a
|
2520
1782
|
# resource's LF-tag policy.
|
2521
1783
|
#
|
2522
|
-
# @note When making an API call, you may pass LFTagPolicyResource
|
2523
|
-
# data as a hash:
|
2524
|
-
#
|
2525
|
-
# {
|
2526
|
-
# catalog_id: "CatalogIdString",
|
2527
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
2528
|
-
# expression: [ # required
|
2529
|
-
# {
|
2530
|
-
# tag_key: "LFTagKey", # required
|
2531
|
-
# tag_values: ["LFTagValue"], # required
|
2532
|
-
# },
|
2533
|
-
# ],
|
2534
|
-
# }
|
2535
|
-
#
|
2536
1784
|
# @!attribute [rw] catalog_id
|
2537
1785
|
# The identifier for the Data Catalog. By default, the account ID. The
|
2538
1786
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -2559,21 +1807,6 @@ module Aws::LakeFormation
|
|
2559
1807
|
include Aws::Structure
|
2560
1808
|
end
|
2561
1809
|
|
2562
|
-
# @note When making an API call, you may pass ListDataCellsFilterRequest
|
2563
|
-
# data as a hash:
|
2564
|
-
#
|
2565
|
-
# {
|
2566
|
-
# table: {
|
2567
|
-
# catalog_id: "CatalogIdString",
|
2568
|
-
# database_name: "NameString", # required
|
2569
|
-
# name: "NameString",
|
2570
|
-
# table_wildcard: {
|
2571
|
-
# },
|
2572
|
-
# },
|
2573
|
-
# next_token: "Token",
|
2574
|
-
# max_results: 1,
|
2575
|
-
# }
|
2576
|
-
#
|
2577
1810
|
# @!attribute [rw] table
|
2578
1811
|
# A table in the Glue Data Catalog.
|
2579
1812
|
# @return [Types::TableResource]
|
@@ -2614,16 +1847,6 @@ module Aws::LakeFormation
|
|
2614
1847
|
include Aws::Structure
|
2615
1848
|
end
|
2616
1849
|
|
2617
|
-
# @note When making an API call, you may pass ListLFTagsRequest
|
2618
|
-
# data as a hash:
|
2619
|
-
#
|
2620
|
-
# {
|
2621
|
-
# catalog_id: "CatalogIdString",
|
2622
|
-
# resource_share_type: "FOREIGN", # accepts FOREIGN, ALL
|
2623
|
-
# max_results: 1,
|
2624
|
-
# next_token: "Token",
|
2625
|
-
# }
|
2626
|
-
#
|
2627
1850
|
# @!attribute [rw] catalog_id
|
2628
1851
|
# The identifier for the Data Catalog. By default, the account ID. The
|
2629
1852
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -2678,69 +1901,6 @@ module Aws::LakeFormation
|
|
2678
1901
|
include Aws::Structure
|
2679
1902
|
end
|
2680
1903
|
|
2681
|
-
# @note When making an API call, you may pass ListPermissionsRequest
|
2682
|
-
# data as a hash:
|
2683
|
-
#
|
2684
|
-
# {
|
2685
|
-
# catalog_id: "CatalogIdString",
|
2686
|
-
# principal: {
|
2687
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
2688
|
-
# },
|
2689
|
-
# resource_type: "CATALOG", # accepts CATALOG, DATABASE, TABLE, DATA_LOCATION, LF_TAG, LF_TAG_POLICY, LF_TAG_POLICY_DATABASE, LF_TAG_POLICY_TABLE
|
2690
|
-
# resource: {
|
2691
|
-
# catalog: {
|
2692
|
-
# },
|
2693
|
-
# database: {
|
2694
|
-
# catalog_id: "CatalogIdString",
|
2695
|
-
# name: "NameString", # required
|
2696
|
-
# },
|
2697
|
-
# table: {
|
2698
|
-
# catalog_id: "CatalogIdString",
|
2699
|
-
# database_name: "NameString", # required
|
2700
|
-
# name: "NameString",
|
2701
|
-
# table_wildcard: {
|
2702
|
-
# },
|
2703
|
-
# },
|
2704
|
-
# table_with_columns: {
|
2705
|
-
# catalog_id: "CatalogIdString",
|
2706
|
-
# database_name: "NameString", # required
|
2707
|
-
# name: "NameString", # required
|
2708
|
-
# column_names: ["NameString"],
|
2709
|
-
# column_wildcard: {
|
2710
|
-
# excluded_column_names: ["NameString"],
|
2711
|
-
# },
|
2712
|
-
# },
|
2713
|
-
# data_location: {
|
2714
|
-
# catalog_id: "CatalogIdString",
|
2715
|
-
# resource_arn: "ResourceArnString", # required
|
2716
|
-
# },
|
2717
|
-
# data_cells_filter: {
|
2718
|
-
# table_catalog_id: "CatalogIdString",
|
2719
|
-
# database_name: "NameString",
|
2720
|
-
# table_name: "NameString",
|
2721
|
-
# name: "NameString",
|
2722
|
-
# },
|
2723
|
-
# lf_tag: {
|
2724
|
-
# catalog_id: "CatalogIdString",
|
2725
|
-
# tag_key: "NameString", # required
|
2726
|
-
# tag_values: ["LFTagValue"], # required
|
2727
|
-
# },
|
2728
|
-
# lf_tag_policy: {
|
2729
|
-
# catalog_id: "CatalogIdString",
|
2730
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
2731
|
-
# expression: [ # required
|
2732
|
-
# {
|
2733
|
-
# tag_key: "LFTagKey", # required
|
2734
|
-
# tag_values: ["LFTagValue"], # required
|
2735
|
-
# },
|
2736
|
-
# ],
|
2737
|
-
# },
|
2738
|
-
# },
|
2739
|
-
# next_token: "Token",
|
2740
|
-
# max_results: 1,
|
2741
|
-
# include_related: "TrueFalseString",
|
2742
|
-
# }
|
2743
|
-
#
|
2744
1904
|
# @!attribute [rw] catalog_id
|
2745
1905
|
# The identifier for the Data Catalog. By default, the account ID. The
|
2746
1906
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -2811,21 +1971,6 @@ module Aws::LakeFormation
|
|
2811
1971
|
include Aws::Structure
|
2812
1972
|
end
|
2813
1973
|
|
2814
|
-
# @note When making an API call, you may pass ListResourcesRequest
|
2815
|
-
# data as a hash:
|
2816
|
-
#
|
2817
|
-
# {
|
2818
|
-
# filter_condition_list: [
|
2819
|
-
# {
|
2820
|
-
# field: "RESOURCE_ARN", # accepts RESOURCE_ARN, ROLE_ARN, LAST_MODIFIED
|
2821
|
-
# comparison_operator: "EQ", # accepts EQ, NE, LE, LT, GE, GT, CONTAINS, NOT_CONTAINS, BEGINS_WITH, IN, BETWEEN
|
2822
|
-
# string_value_list: ["StringValue"],
|
2823
|
-
# },
|
2824
|
-
# ],
|
2825
|
-
# max_results: 1,
|
2826
|
-
# next_token: "Token",
|
2827
|
-
# }
|
2828
|
-
#
|
2829
1974
|
# @!attribute [rw] filter_condition_list
|
2830
1975
|
# Any applicable row-level and/or column-level filtering conditions
|
2831
1976
|
# for the resources.
|
@@ -2868,18 +2013,6 @@ module Aws::LakeFormation
|
|
2868
2013
|
include Aws::Structure
|
2869
2014
|
end
|
2870
2015
|
|
2871
|
-
# @note When making an API call, you may pass ListTableStorageOptimizersRequest
|
2872
|
-
# data as a hash:
|
2873
|
-
#
|
2874
|
-
# {
|
2875
|
-
# catalog_id: "CatalogIdString",
|
2876
|
-
# database_name: "NameString", # required
|
2877
|
-
# table_name: "NameString", # required
|
2878
|
-
# storage_optimizer_type: "COMPACTION", # accepts COMPACTION, GARBAGE_COLLECTION, ALL
|
2879
|
-
# max_results: 1,
|
2880
|
-
# next_token: "Token",
|
2881
|
-
# }
|
2882
|
-
#
|
2883
2016
|
# @!attribute [rw] catalog_id
|
2884
2017
|
# The Catalog ID of the table.
|
2885
2018
|
# @return [String]
|
@@ -2936,16 +2069,6 @@ module Aws::LakeFormation
|
|
2936
2069
|
include Aws::Structure
|
2937
2070
|
end
|
2938
2071
|
|
2939
|
-
# @note When making an API call, you may pass ListTransactionsRequest
|
2940
|
-
# data as a hash:
|
2941
|
-
#
|
2942
|
-
# {
|
2943
|
-
# catalog_id: "CatalogIdString",
|
2944
|
-
# status_filter: "ALL", # accepts ALL, COMPLETED, ACTIVE, COMMITTED, ABORTED
|
2945
|
-
# max_results: 1,
|
2946
|
-
# next_token: "TokenString",
|
2947
|
-
# }
|
2948
|
-
#
|
2949
2072
|
# @!attribute [rw] catalog_id
|
2950
2073
|
# The catalog for which to list transactions. Defaults to the account
|
2951
2074
|
# ID of the caller.
|
@@ -3031,13 +2154,6 @@ module Aws::LakeFormation
|
|
3031
2154
|
|
3032
2155
|
# Contains a list of values defining partitions.
|
3033
2156
|
#
|
3034
|
-
# @note When making an API call, you may pass PartitionValueList
|
3035
|
-
# data as a hash:
|
3036
|
-
#
|
3037
|
-
# {
|
3038
|
-
# values: ["ValueString"], # required
|
3039
|
-
# }
|
3040
|
-
#
|
3041
2157
|
# @!attribute [rw] values
|
3042
2158
|
# The list of partition values.
|
3043
2159
|
# @return [Array<String>]
|
@@ -3099,16 +2215,6 @@ module Aws::LakeFormation
|
|
3099
2215
|
|
3100
2216
|
# Permissions granted to a principal.
|
3101
2217
|
#
|
3102
|
-
# @note When making an API call, you may pass PrincipalPermissions
|
3103
|
-
# data as a hash:
|
3104
|
-
#
|
3105
|
-
# {
|
3106
|
-
# principal: {
|
3107
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3108
|
-
# },
|
3109
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
3110
|
-
# }
|
3111
|
-
#
|
3112
2218
|
# @!attribute [rw] principal
|
3113
2219
|
# The principal who is granted permissions.
|
3114
2220
|
# @return [Types::DataLakePrincipal]
|
@@ -3163,44 +2269,6 @@ module Aws::LakeFormation
|
|
3163
2269
|
include Aws::Structure
|
3164
2270
|
end
|
3165
2271
|
|
3166
|
-
# @note When making an API call, you may pass PutDataLakeSettingsRequest
|
3167
|
-
# data as a hash:
|
3168
|
-
#
|
3169
|
-
# {
|
3170
|
-
# catalog_id: "CatalogIdString",
|
3171
|
-
# data_lake_settings: { # required
|
3172
|
-
# data_lake_admins: [
|
3173
|
-
# {
|
3174
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3175
|
-
# },
|
3176
|
-
# ],
|
3177
|
-
# create_database_default_permissions: [
|
3178
|
-
# {
|
3179
|
-
# principal: {
|
3180
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3181
|
-
# },
|
3182
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
3183
|
-
# },
|
3184
|
-
# ],
|
3185
|
-
# create_table_default_permissions: [
|
3186
|
-
# {
|
3187
|
-
# principal: {
|
3188
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3189
|
-
# },
|
3190
|
-
# permissions: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
3191
|
-
# },
|
3192
|
-
# ],
|
3193
|
-
# trusted_resource_owners: ["CatalogIdString"],
|
3194
|
-
# allow_external_data_filtering: false,
|
3195
|
-
# external_data_filtering_allow_list: [
|
3196
|
-
# {
|
3197
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3198
|
-
# },
|
3199
|
-
# ],
|
3200
|
-
# authorized_session_tag_value_list: ["NameString"],
|
3201
|
-
# },
|
3202
|
-
# }
|
3203
|
-
#
|
3204
2272
|
# @!attribute [rw] catalog_id
|
3205
2273
|
# The identifier for the Data Catalog. By default, the account ID. The
|
3206
2274
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -3228,19 +2296,6 @@ module Aws::LakeFormation
|
|
3228
2296
|
|
3229
2297
|
# A structure containing information about the query plan.
|
3230
2298
|
#
|
3231
|
-
# @note When making an API call, you may pass QueryPlanningContext
|
3232
|
-
# data as a hash:
|
3233
|
-
#
|
3234
|
-
# {
|
3235
|
-
# catalog_id: "CatalogIdString",
|
3236
|
-
# database_name: "QueryPlanningContextDatabaseNameString", # required
|
3237
|
-
# query_as_of_time: Time.now,
|
3238
|
-
# query_parameters: {
|
3239
|
-
# "String" => "String",
|
3240
|
-
# },
|
3241
|
-
# transaction_id: "TransactionIdString",
|
3242
|
-
# }
|
3243
|
-
#
|
3244
2299
|
# @!attribute [rw] catalog_id
|
3245
2300
|
# The ID of the Data Catalog where the partition in question resides.
|
3246
2301
|
# If none is provided, the Amazon Web Services account ID is used by
|
@@ -3282,15 +2337,6 @@ module Aws::LakeFormation
|
|
3282
2337
|
include Aws::Structure
|
3283
2338
|
end
|
3284
2339
|
|
3285
|
-
# @note When making an API call, you may pass RegisterResourceRequest
|
3286
|
-
# data as a hash:
|
3287
|
-
#
|
3288
|
-
# {
|
3289
|
-
# resource_arn: "ResourceArnString", # required
|
3290
|
-
# use_service_linked_role: false,
|
3291
|
-
# role_arn: "IAMRoleArn",
|
3292
|
-
# }
|
3293
|
-
#
|
3294
2340
|
# @!attribute [rw] resource_arn
|
3295
2341
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
3296
2342
|
# register.
|
@@ -3307,7 +2353,7 @@ module Aws::LakeFormation
|
|
3307
2353
|
#
|
3308
2354
|
#
|
3309
2355
|
#
|
3310
|
-
# [1]: https://docs
|
2356
|
+
# [1]: https://docs.aws.amazon.com/lake-formation/latest/dg/service-linked-roles.html
|
3311
2357
|
# @return [Boolean]
|
3312
2358
|
#
|
3313
2359
|
# @!attribute [rw] role_arn
|
@@ -3328,69 +2374,6 @@ module Aws::LakeFormation
|
|
3328
2374
|
#
|
3329
2375
|
class RegisterResourceResponse < Aws::EmptyStructure; end
|
3330
2376
|
|
3331
|
-
# @note When making an API call, you may pass RemoveLFTagsFromResourceRequest
|
3332
|
-
# data as a hash:
|
3333
|
-
#
|
3334
|
-
# {
|
3335
|
-
# catalog_id: "CatalogIdString",
|
3336
|
-
# resource: { # required
|
3337
|
-
# catalog: {
|
3338
|
-
# },
|
3339
|
-
# database: {
|
3340
|
-
# catalog_id: "CatalogIdString",
|
3341
|
-
# name: "NameString", # required
|
3342
|
-
# },
|
3343
|
-
# table: {
|
3344
|
-
# catalog_id: "CatalogIdString",
|
3345
|
-
# database_name: "NameString", # required
|
3346
|
-
# name: "NameString",
|
3347
|
-
# table_wildcard: {
|
3348
|
-
# },
|
3349
|
-
# },
|
3350
|
-
# table_with_columns: {
|
3351
|
-
# catalog_id: "CatalogIdString",
|
3352
|
-
# database_name: "NameString", # required
|
3353
|
-
# name: "NameString", # required
|
3354
|
-
# column_names: ["NameString"],
|
3355
|
-
# column_wildcard: {
|
3356
|
-
# excluded_column_names: ["NameString"],
|
3357
|
-
# },
|
3358
|
-
# },
|
3359
|
-
# data_location: {
|
3360
|
-
# catalog_id: "CatalogIdString",
|
3361
|
-
# resource_arn: "ResourceArnString", # required
|
3362
|
-
# },
|
3363
|
-
# data_cells_filter: {
|
3364
|
-
# table_catalog_id: "CatalogIdString",
|
3365
|
-
# database_name: "NameString",
|
3366
|
-
# table_name: "NameString",
|
3367
|
-
# name: "NameString",
|
3368
|
-
# },
|
3369
|
-
# lf_tag: {
|
3370
|
-
# catalog_id: "CatalogIdString",
|
3371
|
-
# tag_key: "NameString", # required
|
3372
|
-
# tag_values: ["LFTagValue"], # required
|
3373
|
-
# },
|
3374
|
-
# lf_tag_policy: {
|
3375
|
-
# catalog_id: "CatalogIdString",
|
3376
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
3377
|
-
# expression: [ # required
|
3378
|
-
# {
|
3379
|
-
# tag_key: "LFTagKey", # required
|
3380
|
-
# tag_values: ["LFTagValue"], # required
|
3381
|
-
# },
|
3382
|
-
# ],
|
3383
|
-
# },
|
3384
|
-
# },
|
3385
|
-
# lf_tags: [ # required
|
3386
|
-
# {
|
3387
|
-
# catalog_id: "CatalogIdString",
|
3388
|
-
# tag_key: "LFTagKey", # required
|
3389
|
-
# tag_values: ["LFTagValue"], # required
|
3390
|
-
# },
|
3391
|
-
# ],
|
3392
|
-
# }
|
3393
|
-
#
|
3394
2377
|
# @!attribute [rw] catalog_id
|
3395
2378
|
# The identifier for the Data Catalog. By default, the account ID. The
|
3396
2379
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -3431,59 +2414,6 @@ module Aws::LakeFormation
|
|
3431
2414
|
|
3432
2415
|
# A structure for the resource.
|
3433
2416
|
#
|
3434
|
-
# @note When making an API call, you may pass Resource
|
3435
|
-
# data as a hash:
|
3436
|
-
#
|
3437
|
-
# {
|
3438
|
-
# catalog: {
|
3439
|
-
# },
|
3440
|
-
# database: {
|
3441
|
-
# catalog_id: "CatalogIdString",
|
3442
|
-
# name: "NameString", # required
|
3443
|
-
# },
|
3444
|
-
# table: {
|
3445
|
-
# catalog_id: "CatalogIdString",
|
3446
|
-
# database_name: "NameString", # required
|
3447
|
-
# name: "NameString",
|
3448
|
-
# table_wildcard: {
|
3449
|
-
# },
|
3450
|
-
# },
|
3451
|
-
# table_with_columns: {
|
3452
|
-
# catalog_id: "CatalogIdString",
|
3453
|
-
# database_name: "NameString", # required
|
3454
|
-
# name: "NameString", # required
|
3455
|
-
# column_names: ["NameString"],
|
3456
|
-
# column_wildcard: {
|
3457
|
-
# excluded_column_names: ["NameString"],
|
3458
|
-
# },
|
3459
|
-
# },
|
3460
|
-
# data_location: {
|
3461
|
-
# catalog_id: "CatalogIdString",
|
3462
|
-
# resource_arn: "ResourceArnString", # required
|
3463
|
-
# },
|
3464
|
-
# data_cells_filter: {
|
3465
|
-
# table_catalog_id: "CatalogIdString",
|
3466
|
-
# database_name: "NameString",
|
3467
|
-
# table_name: "NameString",
|
3468
|
-
# name: "NameString",
|
3469
|
-
# },
|
3470
|
-
# lf_tag: {
|
3471
|
-
# catalog_id: "CatalogIdString",
|
3472
|
-
# tag_key: "NameString", # required
|
3473
|
-
# tag_values: ["LFTagValue"], # required
|
3474
|
-
# },
|
3475
|
-
# lf_tag_policy: {
|
3476
|
-
# catalog_id: "CatalogIdString",
|
3477
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
3478
|
-
# expression: [ # required
|
3479
|
-
# {
|
3480
|
-
# tag_key: "LFTagKey", # required
|
3481
|
-
# tag_values: ["LFTagValue"], # required
|
3482
|
-
# },
|
3483
|
-
# ],
|
3484
|
-
# },
|
3485
|
-
# }
|
3486
|
-
#
|
3487
2417
|
# @!attribute [rw] catalog
|
3488
2418
|
# The identifier for the Data Catalog. By default, the account ID. The
|
3489
2419
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -3595,67 +2525,6 @@ module Aws::LakeFormation
|
|
3595
2525
|
include Aws::Structure
|
3596
2526
|
end
|
3597
2527
|
|
3598
|
-
# @note When making an API call, you may pass RevokePermissionsRequest
|
3599
|
-
# data as a hash:
|
3600
|
-
#
|
3601
|
-
# {
|
3602
|
-
# catalog_id: "CatalogIdString",
|
3603
|
-
# principal: { # required
|
3604
|
-
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3605
|
-
# },
|
3606
|
-
# resource: { # required
|
3607
|
-
# catalog: {
|
3608
|
-
# },
|
3609
|
-
# database: {
|
3610
|
-
# catalog_id: "CatalogIdString",
|
3611
|
-
# name: "NameString", # required
|
3612
|
-
# },
|
3613
|
-
# table: {
|
3614
|
-
# catalog_id: "CatalogIdString",
|
3615
|
-
# database_name: "NameString", # required
|
3616
|
-
# name: "NameString",
|
3617
|
-
# table_wildcard: {
|
3618
|
-
# },
|
3619
|
-
# },
|
3620
|
-
# table_with_columns: {
|
3621
|
-
# catalog_id: "CatalogIdString",
|
3622
|
-
# database_name: "NameString", # required
|
3623
|
-
# name: "NameString", # required
|
3624
|
-
# column_names: ["NameString"],
|
3625
|
-
# column_wildcard: {
|
3626
|
-
# excluded_column_names: ["NameString"],
|
3627
|
-
# },
|
3628
|
-
# },
|
3629
|
-
# data_location: {
|
3630
|
-
# catalog_id: "CatalogIdString",
|
3631
|
-
# resource_arn: "ResourceArnString", # required
|
3632
|
-
# },
|
3633
|
-
# data_cells_filter: {
|
3634
|
-
# table_catalog_id: "CatalogIdString",
|
3635
|
-
# database_name: "NameString",
|
3636
|
-
# table_name: "NameString",
|
3637
|
-
# name: "NameString",
|
3638
|
-
# },
|
3639
|
-
# lf_tag: {
|
3640
|
-
# catalog_id: "CatalogIdString",
|
3641
|
-
# tag_key: "NameString", # required
|
3642
|
-
# tag_values: ["LFTagValue"], # required
|
3643
|
-
# },
|
3644
|
-
# lf_tag_policy: {
|
3645
|
-
# catalog_id: "CatalogIdString",
|
3646
|
-
# resource_type: "DATABASE", # required, accepts DATABASE, TABLE
|
3647
|
-
# expression: [ # required
|
3648
|
-
# {
|
3649
|
-
# tag_key: "LFTagKey", # required
|
3650
|
-
# tag_values: ["LFTagValue"], # required
|
3651
|
-
# },
|
3652
|
-
# ],
|
3653
|
-
# },
|
3654
|
-
# },
|
3655
|
-
# permissions: ["ALL"], # required, accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
3656
|
-
# permissions_with_grant_option: ["ALL"], # accepts ALL, SELECT, ALTER, DROP, DELETE, INSERT, DESCRIBE, CREATE_DATABASE, CREATE_TABLE, DATA_LOCATION_ACCESS, CREATE_TAG, ASSOCIATE
|
3657
|
-
# }
|
3658
|
-
#
|
3659
2528
|
# @!attribute [rw] catalog_id
|
3660
2529
|
# The identifier for the Data Catalog. By default, the account ID. The
|
3661
2530
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -3704,15 +2573,6 @@ module Aws::LakeFormation
|
|
3704
2573
|
|
3705
2574
|
# A PartiQL predicate.
|
3706
2575
|
#
|
3707
|
-
# @note When making an API call, you may pass RowFilter
|
3708
|
-
# data as a hash:
|
3709
|
-
#
|
3710
|
-
# {
|
3711
|
-
# filter_expression: "PredicateString",
|
3712
|
-
# all_rows_wildcard: {
|
3713
|
-
# },
|
3714
|
-
# }
|
3715
|
-
#
|
3716
2576
|
# @!attribute [rw] filter_expression
|
3717
2577
|
# A filter expression.
|
3718
2578
|
# @return [String]
|
@@ -3730,21 +2590,6 @@ module Aws::LakeFormation
|
|
3730
2590
|
include Aws::Structure
|
3731
2591
|
end
|
3732
2592
|
|
3733
|
-
# @note When making an API call, you may pass SearchDatabasesByLFTagsRequest
|
3734
|
-
# data as a hash:
|
3735
|
-
#
|
3736
|
-
# {
|
3737
|
-
# next_token: "Token",
|
3738
|
-
# max_results: 1,
|
3739
|
-
# catalog_id: "CatalogIdString",
|
3740
|
-
# expression: [ # required
|
3741
|
-
# {
|
3742
|
-
# tag_key: "LFTagKey", # required
|
3743
|
-
# tag_values: ["LFTagValue"], # required
|
3744
|
-
# },
|
3745
|
-
# ],
|
3746
|
-
# }
|
3747
|
-
#
|
3748
2593
|
# @!attribute [rw] next_token
|
3749
2594
|
# A continuation token, if this is not the first call to retrieve this
|
3750
2595
|
# list.
|
@@ -3795,21 +2640,6 @@ module Aws::LakeFormation
|
|
3795
2640
|
include Aws::Structure
|
3796
2641
|
end
|
3797
2642
|
|
3798
|
-
# @note When making an API call, you may pass SearchTablesByLFTagsRequest
|
3799
|
-
# data as a hash:
|
3800
|
-
#
|
3801
|
-
# {
|
3802
|
-
# next_token: "Token",
|
3803
|
-
# max_results: 1,
|
3804
|
-
# catalog_id: "CatalogIdString",
|
3805
|
-
# expression: [ # required
|
3806
|
-
# {
|
3807
|
-
# tag_key: "LFTagKey", # required
|
3808
|
-
# tag_values: ["LFTagValue"], # required
|
3809
|
-
# },
|
3810
|
-
# ],
|
3811
|
-
# }
|
3812
|
-
#
|
3813
2643
|
# @!attribute [rw] next_token
|
3814
2644
|
# A continuation token, if this is not the first call to retrieve this
|
3815
2645
|
# list.
|
@@ -3860,22 +2690,6 @@ module Aws::LakeFormation
|
|
3860
2690
|
include Aws::Structure
|
3861
2691
|
end
|
3862
2692
|
|
3863
|
-
# @note When making an API call, you may pass StartQueryPlanningRequest
|
3864
|
-
# data as a hash:
|
3865
|
-
#
|
3866
|
-
# {
|
3867
|
-
# query_planning_context: { # required
|
3868
|
-
# catalog_id: "CatalogIdString",
|
3869
|
-
# database_name: "QueryPlanningContextDatabaseNameString", # required
|
3870
|
-
# query_as_of_time: Time.now,
|
3871
|
-
# query_parameters: {
|
3872
|
-
# "String" => "String",
|
3873
|
-
# },
|
3874
|
-
# transaction_id: "TransactionIdString",
|
3875
|
-
# },
|
3876
|
-
# query_string: "SyntheticStartQueryPlanningRequestQueryString", # required
|
3877
|
-
# }
|
3878
|
-
#
|
3879
2693
|
# @!attribute [rw] query_planning_context
|
3880
2694
|
# A structure containing information about the query plan.
|
3881
2695
|
# @return [Types::QueryPlanningContext]
|
@@ -3910,13 +2724,6 @@ module Aws::LakeFormation
|
|
3910
2724
|
include Aws::Structure
|
3911
2725
|
end
|
3912
2726
|
|
3913
|
-
# @note When making an API call, you may pass StartTransactionRequest
|
3914
|
-
# data as a hash:
|
3915
|
-
#
|
3916
|
-
# {
|
3917
|
-
# transaction_type: "READ_AND_WRITE", # accepts READ_AND_WRITE, READ_ONLY
|
3918
|
-
# }
|
3919
|
-
#
|
3920
2727
|
# @!attribute [rw] transaction_type
|
3921
2728
|
# Indicates whether this transaction should be read only or read and
|
3922
2729
|
# write. Writes made using a read-only transaction ID will be
|
@@ -4031,17 +2838,6 @@ module Aws::LakeFormation
|
|
4031
2838
|
# that represents your data. You can Grant and Revoke table privileges
|
4032
2839
|
# to a principal.
|
4033
2840
|
#
|
4034
|
-
# @note When making an API call, you may pass TableResource
|
4035
|
-
# data as a hash:
|
4036
|
-
#
|
4037
|
-
# {
|
4038
|
-
# catalog_id: "CatalogIdString",
|
4039
|
-
# database_name: "NameString", # required
|
4040
|
-
# name: "NameString",
|
4041
|
-
# table_wildcard: {
|
4042
|
-
# },
|
4043
|
-
# }
|
4044
|
-
#
|
4045
2841
|
# @!attribute [rw] catalog_id
|
4046
2842
|
# The identifier for the Data Catalog. By default, it is the account
|
4047
2843
|
# ID of the caller.
|
@@ -4090,19 +2886,6 @@ module Aws::LakeFormation
|
|
4090
2886
|
# This object must take a value for at least one of `ColumnsNames`,
|
4091
2887
|
# `ColumnsIndexes`, or `ColumnsWildcard`.
|
4092
2888
|
#
|
4093
|
-
# @note When making an API call, you may pass TableWithColumnsResource
|
4094
|
-
# data as a hash:
|
4095
|
-
#
|
4096
|
-
# {
|
4097
|
-
# catalog_id: "CatalogIdString",
|
4098
|
-
# database_name: "NameString", # required
|
4099
|
-
# name: "NameString", # required
|
4100
|
-
# column_names: ["NameString"],
|
4101
|
-
# column_wildcard: {
|
4102
|
-
# excluded_column_names: ["NameString"],
|
4103
|
-
# },
|
4104
|
-
# }
|
4105
|
-
#
|
4106
2889
|
# @!attribute [rw] catalog_id
|
4107
2890
|
# The identifier for the Data Catalog. By default, it is the account
|
4108
2891
|
# ID of the caller.
|
@@ -4280,16 +3063,6 @@ module Aws::LakeFormation
|
|
4280
3063
|
include Aws::Structure
|
4281
3064
|
end
|
4282
3065
|
|
4283
|
-
# @note When making an API call, you may pass UpdateLFTagRequest
|
4284
|
-
# data as a hash:
|
4285
|
-
#
|
4286
|
-
# {
|
4287
|
-
# catalog_id: "CatalogIdString",
|
4288
|
-
# tag_key: "LFTagKey", # required
|
4289
|
-
# tag_values_to_delete: ["LFTagValue"],
|
4290
|
-
# tag_values_to_add: ["LFTagValue"],
|
4291
|
-
# }
|
4292
|
-
#
|
4293
3066
|
# @!attribute [rw] catalog_id
|
4294
3067
|
# The identifier for the Data Catalog. By default, the account ID. The
|
4295
3068
|
# Data Catalog is the persistent metadata store. It contains database
|
@@ -4324,14 +3097,6 @@ module Aws::LakeFormation
|
|
4324
3097
|
#
|
4325
3098
|
class UpdateLFTagResponse < Aws::EmptyStructure; end
|
4326
3099
|
|
4327
|
-
# @note When making an API call, you may pass UpdateResourceRequest
|
4328
|
-
# data as a hash:
|
4329
|
-
#
|
4330
|
-
# {
|
4331
|
-
# role_arn: "IAMRoleArn", # required
|
4332
|
-
# resource_arn: "ResourceArnString", # required
|
4333
|
-
# }
|
4334
|
-
#
|
4335
3100
|
# @!attribute [rw] role_arn
|
4336
3101
|
# The new role to use for the given resource registered in Lake
|
4337
3102
|
# Formation.
|
@@ -4354,31 +3119,6 @@ module Aws::LakeFormation
|
|
4354
3119
|
#
|
4355
3120
|
class UpdateResourceResponse < Aws::EmptyStructure; end
|
4356
3121
|
|
4357
|
-
# @note When making an API call, you may pass UpdateTableObjectsRequest
|
4358
|
-
# data as a hash:
|
4359
|
-
#
|
4360
|
-
# {
|
4361
|
-
# catalog_id: "CatalogIdString",
|
4362
|
-
# database_name: "NameString", # required
|
4363
|
-
# table_name: "NameString", # required
|
4364
|
-
# transaction_id: "TransactionIdString",
|
4365
|
-
# write_operations: [ # required
|
4366
|
-
# {
|
4367
|
-
# add_object: {
|
4368
|
-
# uri: "URI", # required
|
4369
|
-
# etag: "ETagString", # required
|
4370
|
-
# size: 1, # required
|
4371
|
-
# partition_values: ["PartitionValueString"],
|
4372
|
-
# },
|
4373
|
-
# delete_object: {
|
4374
|
-
# uri: "URI", # required
|
4375
|
-
# etag: "ETagString",
|
4376
|
-
# partition_values: ["PartitionValueString"],
|
4377
|
-
# },
|
4378
|
-
# },
|
4379
|
-
# ],
|
4380
|
-
# }
|
4381
|
-
#
|
4382
3122
|
# @!attribute [rw] catalog_id
|
4383
3123
|
# The catalog containing the governed table to update. Defaults to the
|
4384
3124
|
# caller’s account ID.
|
@@ -4417,20 +3157,6 @@ module Aws::LakeFormation
|
|
4417
3157
|
#
|
4418
3158
|
class UpdateTableObjectsResponse < Aws::EmptyStructure; end
|
4419
3159
|
|
4420
|
-
# @note When making an API call, you may pass UpdateTableStorageOptimizerRequest
|
4421
|
-
# data as a hash:
|
4422
|
-
#
|
4423
|
-
# {
|
4424
|
-
# catalog_id: "CatalogIdString",
|
4425
|
-
# database_name: "NameString", # required
|
4426
|
-
# table_name: "NameString", # required
|
4427
|
-
# storage_optimizer_config: { # required
|
4428
|
-
# "COMPACTION" => {
|
4429
|
-
# "StorageOptimizerConfigKey" => "StorageOptimizerConfigValue",
|
4430
|
-
# },
|
4431
|
-
# },
|
4432
|
-
# }
|
4433
|
-
#
|
4434
3160
|
# @!attribute [rw] catalog_id
|
4435
3161
|
# The Catalog ID of the table.
|
4436
3162
|
# @return [String]
|
@@ -4474,14 +3200,6 @@ module Aws::LakeFormation
|
|
4474
3200
|
# transaction cancels, provided that `VirtualPut` was called before
|
4475
3201
|
# writing the object.
|
4476
3202
|
#
|
4477
|
-
# @note When making an API call, you may pass VirtualObject
|
4478
|
-
# data as a hash:
|
4479
|
-
#
|
4480
|
-
# {
|
4481
|
-
# uri: "URI", # required
|
4482
|
-
# etag: "ETagString",
|
4483
|
-
# }
|
4484
|
-
#
|
4485
3203
|
# @!attribute [rw] uri
|
4486
3204
|
# The path to the Amazon S3 object. Must start with s3://
|
4487
3205
|
# @return [String]
|
@@ -4541,23 +3259,6 @@ module Aws::LakeFormation
|
|
4541
3259
|
|
4542
3260
|
# Defines an object to add to or delete from a governed table.
|
4543
3261
|
#
|
4544
|
-
# @note When making an API call, you may pass WriteOperation
|
4545
|
-
# data as a hash:
|
4546
|
-
#
|
4547
|
-
# {
|
4548
|
-
# add_object: {
|
4549
|
-
# uri: "URI", # required
|
4550
|
-
# etag: "ETagString", # required
|
4551
|
-
# size: 1, # required
|
4552
|
-
# partition_values: ["PartitionValueString"],
|
4553
|
-
# },
|
4554
|
-
# delete_object: {
|
4555
|
-
# uri: "URI", # required
|
4556
|
-
# etag: "ETagString",
|
4557
|
-
# partition_values: ["PartitionValueString"],
|
4558
|
-
# },
|
4559
|
-
# }
|
4560
|
-
#
|
4561
3262
|
# @!attribute [rw] add_object
|
4562
3263
|
# A new object to add to the governed table.
|
4563
3264
|
# @return [Types::AddObjectInput]
|