aws-sdk-lakeformation 1.43.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f280abf1ea803622333ea718ebfb6e453d5ca0eb0d8574943cb3f395ab8a682
4
- data.tar.gz: 78b52f3b7a7865cd3b933e986d6a48e8ffcfa08767cc6a0273bfa098f449f1b6
3
+ metadata.gz: '0833d82a11985e12e0166617606fda921ad94b7ffdced24299e74d22979a4ba8'
4
+ data.tar.gz: 8178206aa220bc33582d69e03949deec54858d6b571115bb17eca00c260da9d3
5
5
  SHA512:
6
- metadata.gz: 64295b887d309ad4fcba0c449e88c1561be1010ecaf9a44e1a564255feb0f24c8a7104a458ae8cefad8f16a60811bf21757651131c93804881696c6a846a3a64
7
- data.tar.gz: 5ad1d2edbb37a4162fe3508cbdf185be82a5efba332fee4fffe60e539773366052468adebaf5d7ea0bdd6756884564514ad04275635c1b6645163c9962028e21
6
+ metadata.gz: 02c600018b68b8a9855ae6e6329accf52488d1b94aee77f24334cc812414116c6a7211deaca4de6a5645bab97135db9f7ea507cd0a41516c53dc19a14253bd5b
7
+ data.tar.gz: 12b48daf722d2746a6472a50eb22e4b1c00679d8dd12da1e44e4c4299afdfdd194d0e33f19c97302c1eb19144e6a2b7639633edba92c07fd5da82402baebd5b6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.44.0 (2023-11-27)
5
+ ------------------
6
+
7
+ * Feature - This release adds four new APIs "DescribeLakeFormationIdentityCenterConfiguration", "CreateLakeFormationIdentityCenterConfiguration", "DescribeLakeFormationIdentityCenterConfiguration", and "DeleteLakeFormationIdentityCenterConfiguration", and also updates the corresponding documentation.
8
+
4
9
  1.43.0 (2023-11-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.43.0
1
+ 1.44.0
@@ -939,6 +939,54 @@ module Aws::LakeFormation
939
939
  req.send_request(options)
940
940
  end
941
941
 
942
+ # Creates an IAM Identity Center connection with Lake Formation to allow
943
+ # IAM Identity Center users and groups to access Data Catalog resources.
944
+ #
945
+ # @option params [String] :catalog_id
946
+ # The identifier for the Data Catalog. By default, the account ID. The
947
+ # Data Catalog is the persistent metadata store. It contains database
948
+ # definitions, table definitions, view definitions, and other control
949
+ # information to manage your Lake Formation environment.
950
+ #
951
+ # @option params [String] :instance_arn
952
+ # The ARN of the IAM Identity Center instance for which the operation
953
+ # will be executed. For more information about ARNs, see Amazon Resource
954
+ # Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon
955
+ # Web Services General Reference.
956
+ #
957
+ # @option params [Types::ExternalFilteringConfiguration] :external_filtering
958
+ # A list of the account IDs of Amazon Web Services accounts of
959
+ # third-party applications that are allowed to to access data managed by
960
+ # Lake Formation.
961
+ #
962
+ # @return [Types::CreateLakeFormationIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
963
+ #
964
+ # * {Types::CreateLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
965
+ #
966
+ # @example Request syntax with placeholder values
967
+ #
968
+ # resp = client.create_lake_formation_identity_center_configuration({
969
+ # catalog_id: "CatalogIdString",
970
+ # instance_arn: "IdentityCenterInstanceArn",
971
+ # external_filtering: {
972
+ # status: "ENABLED", # required, accepts ENABLED, DISABLED
973
+ # authorized_targets: ["ScopeTarget"], # required
974
+ # },
975
+ # })
976
+ #
977
+ # @example Response structure
978
+ #
979
+ # resp.application_arn #=> String
980
+ #
981
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/CreateLakeFormationIdentityCenterConfiguration AWS API Documentation
982
+ #
983
+ # @overload create_lake_formation_identity_center_configuration(params = {})
984
+ # @param [Hash] params ({})
985
+ def create_lake_formation_identity_center_configuration(params = {}, options = {})
986
+ req = build_request(:create_lake_formation_identity_center_configuration, params)
987
+ req.send_request(options)
988
+ end
989
+
942
990
  # Enforce Lake Formation permissions for the given databases, tables,
943
991
  # and principals.
944
992
  #
@@ -1085,6 +1133,31 @@ module Aws::LakeFormation
1085
1133
  req.send_request(options)
1086
1134
  end
1087
1135
 
1136
+ # Deletes an IAM Identity Center connection with Lake Formation.
1137
+ #
1138
+ # @option params [String] :catalog_id
1139
+ # The identifier for the Data Catalog. By default, the account ID. The
1140
+ # Data Catalog is the persistent metadata store. It contains database
1141
+ # definitions, table definitions, view definition, and other control
1142
+ # information to manage your Lake Formation environment.
1143
+ #
1144
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1145
+ #
1146
+ # @example Request syntax with placeholder values
1147
+ #
1148
+ # resp = client.delete_lake_formation_identity_center_configuration({
1149
+ # catalog_id: "CatalogIdString",
1150
+ # })
1151
+ #
1152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DeleteLakeFormationIdentityCenterConfiguration AWS API Documentation
1153
+ #
1154
+ # @overload delete_lake_formation_identity_center_configuration(params = {})
1155
+ # @param [Hash] params ({})
1156
+ def delete_lake_formation_identity_center_configuration(params = {}, options = {})
1157
+ req = build_request(:delete_lake_formation_identity_center_configuration, params)
1158
+ req.send_request(options)
1159
+ end
1160
+
1088
1161
  # Remove the Lake Formation permissions enforcement of the given
1089
1162
  # databases, tables, and principals.
1090
1163
  #
@@ -1247,6 +1320,45 @@ module Aws::LakeFormation
1247
1320
  req.send_request(options)
1248
1321
  end
1249
1322
 
1323
+ # Retrieves the instance ARN and application ARN for the connection.
1324
+ #
1325
+ # @option params [String] :catalog_id
1326
+ # The identifier for the Data Catalog. By default, the account ID. The
1327
+ # Data Catalog is the persistent metadata store. It contains database
1328
+ # definitions, table definitions, and other control information to
1329
+ # manage your Lake Formation environment.
1330
+ #
1331
+ # @return [Types::DescribeLakeFormationIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1332
+ #
1333
+ # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#catalog_id #catalog_id} => String
1334
+ # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
1335
+ # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
1336
+ # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#external_filtering #external_filtering} => Types::ExternalFilteringConfiguration
1337
+ #
1338
+ # @example Request syntax with placeholder values
1339
+ #
1340
+ # resp = client.describe_lake_formation_identity_center_configuration({
1341
+ # catalog_id: "CatalogIdString",
1342
+ # })
1343
+ #
1344
+ # @example Response structure
1345
+ #
1346
+ # resp.catalog_id #=> String
1347
+ # resp.instance_arn #=> String
1348
+ # resp.application_arn #=> String
1349
+ # resp.external_filtering.status #=> String, one of "ENABLED", "DISABLED"
1350
+ # resp.external_filtering.authorized_targets #=> Array
1351
+ # resp.external_filtering.authorized_targets[0] #=> String
1352
+ #
1353
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfiguration AWS API Documentation
1354
+ #
1355
+ # @overload describe_lake_formation_identity_center_configuration(params = {})
1356
+ # @param [Hash] params ({})
1357
+ def describe_lake_formation_identity_center_configuration(params = {}, options = {})
1358
+ req = build_request(:describe_lake_formation_identity_center_configuration, params)
1359
+ req.send_request(options)
1360
+ end
1361
+
1250
1362
  # Retrieves the current data access role for the given resource
1251
1363
  # registered in Lake Formation.
1252
1364
  #
@@ -3386,6 +3498,44 @@ module Aws::LakeFormation
3386
3498
  req.send_request(options)
3387
3499
  end
3388
3500
 
3501
+ # Updates the IAM Identity Center connection parameters.
3502
+ #
3503
+ # @option params [String] :catalog_id
3504
+ # The identifier for the Data Catalog. By default, the account ID. The
3505
+ # Data Catalog is the persistent metadata store. It contains database
3506
+ # definitions, table definitions, view definitions, and other control
3507
+ # information to manage your Lake Formation environment.
3508
+ #
3509
+ # @option params [String] :application_status
3510
+ # Allows to enable or disable the IAM Identity Center connection.
3511
+ #
3512
+ # @option params [Types::ExternalFilteringConfiguration] :external_filtering
3513
+ # A list of the account IDs of Amazon Web Services accounts of
3514
+ # third-party applications that are allowed to access data managed by
3515
+ # Lake Formation.
3516
+ #
3517
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3518
+ #
3519
+ # @example Request syntax with placeholder values
3520
+ #
3521
+ # resp = client.update_lake_formation_identity_center_configuration({
3522
+ # catalog_id: "CatalogIdString",
3523
+ # application_status: "ENABLED", # accepts ENABLED, DISABLED
3524
+ # external_filtering: {
3525
+ # status: "ENABLED", # required, accepts ENABLED, DISABLED
3526
+ # authorized_targets: ["ScopeTarget"], # required
3527
+ # },
3528
+ # })
3529
+ #
3530
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateLakeFormationIdentityCenterConfiguration AWS API Documentation
3531
+ #
3532
+ # @overload update_lake_formation_identity_center_configuration(params = {})
3533
+ # @param [Hash] params ({})
3534
+ def update_lake_formation_identity_center_configuration(params = {}, options = {})
3535
+ req = build_request(:update_lake_formation_identity_center_configuration, params)
3536
+ req.send_request(options)
3537
+ end
3538
+
3389
3539
  # Updates the data access role used for vending access to the given
3390
3540
  # (registered) resource in Lake Formation.
3391
3541
  #
@@ -3536,7 +3686,7 @@ module Aws::LakeFormation
3536
3686
  params: params,
3537
3687
  config: config)
3538
3688
  context[:gem_name] = 'aws-sdk-lakeformation'
3539
- context[:gem_version] = '1.43.0'
3689
+ context[:gem_version] = '1.44.0'
3540
3690
  Seahorse::Client::Request.new(handlers, context)
3541
3691
  end
3542
3692
 
@@ -20,6 +20,8 @@ module Aws::LakeFormation
20
20
  AddObjectInput = Shapes::StructureShape.new(name: 'AddObjectInput')
21
21
  AllRowsWildcard = Shapes::StructureShape.new(name: 'AllRowsWildcard')
22
22
  AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
23
+ ApplicationArn = Shapes::StringShape.new(name: 'ApplicationArn')
24
+ ApplicationStatus = Shapes::StringShape.new(name: 'ApplicationStatus')
23
25
  AssumeDecoratedRoleWithSAMLRequest = Shapes::StructureShape.new(name: 'AssumeDecoratedRoleWithSAMLRequest')
24
26
  AssumeDecoratedRoleWithSAMLResponse = Shapes::StructureShape.new(name: 'AssumeDecoratedRoleWithSAMLResponse')
25
27
  AuditContext = Shapes::StructureShape.new(name: 'AuditContext')
@@ -50,6 +52,8 @@ module Aws::LakeFormation
50
52
  CreateDataCellsFilterResponse = Shapes::StructureShape.new(name: 'CreateDataCellsFilterResponse')
51
53
  CreateLFTagRequest = Shapes::StructureShape.new(name: 'CreateLFTagRequest')
52
54
  CreateLFTagResponse = Shapes::StructureShape.new(name: 'CreateLFTagResponse')
55
+ CreateLakeFormationIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'CreateLakeFormationIdentityCenterConfigurationRequest')
56
+ CreateLakeFormationIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'CreateLakeFormationIdentityCenterConfigurationResponse')
53
57
  CreateLakeFormationOptInRequest = Shapes::StructureShape.new(name: 'CreateLakeFormationOptInRequest')
54
58
  CreateLakeFormationOptInResponse = Shapes::StructureShape.new(name: 'CreateLakeFormationOptInResponse')
55
59
  CredentialTimeoutDurationSecondInteger = Shapes::IntegerShape.new(name: 'CredentialTimeoutDurationSecondInteger')
@@ -69,6 +73,8 @@ module Aws::LakeFormation
69
73
  DeleteDataCellsFilterResponse = Shapes::StructureShape.new(name: 'DeleteDataCellsFilterResponse')
70
74
  DeleteLFTagRequest = Shapes::StructureShape.new(name: 'DeleteLFTagRequest')
71
75
  DeleteLFTagResponse = Shapes::StructureShape.new(name: 'DeleteLFTagResponse')
76
+ DeleteLakeFormationIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteLakeFormationIdentityCenterConfigurationRequest')
77
+ DeleteLakeFormationIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteLakeFormationIdentityCenterConfigurationResponse')
72
78
  DeleteLakeFormationOptInRequest = Shapes::StructureShape.new(name: 'DeleteLakeFormationOptInRequest')
73
79
  DeleteLakeFormationOptInResponse = Shapes::StructureShape.new(name: 'DeleteLakeFormationOptInResponse')
74
80
  DeleteObjectInput = Shapes::StructureShape.new(name: 'DeleteObjectInput')
@@ -76,6 +82,8 @@ module Aws::LakeFormation
76
82
  DeleteObjectsOnCancelResponse = Shapes::StructureShape.new(name: 'DeleteObjectsOnCancelResponse')
77
83
  DeregisterResourceRequest = Shapes::StructureShape.new(name: 'DeregisterResourceRequest')
78
84
  DeregisterResourceResponse = Shapes::StructureShape.new(name: 'DeregisterResourceResponse')
85
+ DescribeLakeFormationIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeLakeFormationIdentityCenterConfigurationRequest')
86
+ DescribeLakeFormationIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeLakeFormationIdentityCenterConfigurationResponse')
79
87
  DescribeResourceRequest = Shapes::StructureShape.new(name: 'DescribeResourceRequest')
80
88
  DescribeResourceResponse = Shapes::StructureShape.new(name: 'DescribeResourceResponse')
81
89
  DescribeTransactionRequest = Shapes::StructureShape.new(name: 'DescribeTransactionRequest')
@@ -83,6 +91,7 @@ module Aws::LakeFormation
83
91
  DescriptionString = Shapes::StringShape.new(name: 'DescriptionString')
84
92
  DetailsMap = Shapes::StructureShape.new(name: 'DetailsMap')
85
93
  ETagString = Shapes::StringShape.new(name: 'ETagString')
94
+ EnableStatus = Shapes::StringShape.new(name: 'EnableStatus')
86
95
  EntityNotFoundException = Shapes::StructureShape.new(name: 'EntityNotFoundException')
87
96
  ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
88
97
  ErrorMessageString = Shapes::StringShape.new(name: 'ErrorMessageString')
@@ -92,6 +101,7 @@ module Aws::LakeFormation
92
101
  Expression = Shapes::ListShape.new(name: 'Expression')
93
102
  ExtendTransactionRequest = Shapes::StructureShape.new(name: 'ExtendTransactionRequest')
94
103
  ExtendTransactionResponse = Shapes::StructureShape.new(name: 'ExtendTransactionResponse')
104
+ ExternalFilteringConfiguration = Shapes::StructureShape.new(name: 'ExternalFilteringConfiguration')
95
105
  FieldNameString = Shapes::StringShape.new(name: 'FieldNameString')
96
106
  FilterCondition = Shapes::StructureShape.new(name: 'FilterCondition')
97
107
  FilterConditionList = Shapes::ListShape.new(name: 'FilterConditionList')
@@ -130,6 +140,7 @@ module Aws::LakeFormation
130
140
  IAMRoleArn = Shapes::StringShape.new(name: 'IAMRoleArn')
131
141
  IAMSAMLProviderArn = Shapes::StringShape.new(name: 'IAMSAMLProviderArn')
132
142
  Identifier = Shapes::StringShape.new(name: 'Identifier')
143
+ IdentityCenterInstanceArn = Shapes::StringShape.new(name: 'IdentityCenterInstanceArn')
133
144
  Integer = Shapes::IntegerShape.new(name: 'Integer')
134
145
  InternalServiceException = Shapes::StructureShape.new(name: 'InternalServiceException')
135
146
  InvalidInputException = Shapes::StructureShape.new(name: 'InvalidInputException')
@@ -215,6 +226,8 @@ module Aws::LakeFormation
215
226
  RevokePermissionsResponse = Shapes::StructureShape.new(name: 'RevokePermissionsResponse')
216
227
  RowFilter = Shapes::StructureShape.new(name: 'RowFilter')
217
228
  SAMLAssertionString = Shapes::StringShape.new(name: 'SAMLAssertionString')
229
+ ScopeTarget = Shapes::StringShape.new(name: 'ScopeTarget')
230
+ ScopeTargets = Shapes::ListShape.new(name: 'ScopeTargets')
218
231
  SearchDatabasesByLFTagsRequest = Shapes::StructureShape.new(name: 'SearchDatabasesByLFTagsRequest')
219
232
  SearchDatabasesByLFTagsResponse = Shapes::StructureShape.new(name: 'SearchDatabasesByLFTagsResponse')
220
233
  SearchPageSize = Shapes::IntegerShape.new(name: 'SearchPageSize')
@@ -267,6 +280,8 @@ module Aws::LakeFormation
267
280
  UpdateDataCellsFilterResponse = Shapes::StructureShape.new(name: 'UpdateDataCellsFilterResponse')
268
281
  UpdateLFTagRequest = Shapes::StructureShape.new(name: 'UpdateLFTagRequest')
269
282
  UpdateLFTagResponse = Shapes::StructureShape.new(name: 'UpdateLFTagResponse')
283
+ UpdateLakeFormationIdentityCenterConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateLakeFormationIdentityCenterConfigurationRequest')
284
+ UpdateLakeFormationIdentityCenterConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateLakeFormationIdentityCenterConfigurationResponse')
270
285
  UpdateResourceRequest = Shapes::StructureShape.new(name: 'UpdateResourceRequest')
271
286
  UpdateResourceResponse = Shapes::StructureShape.new(name: 'UpdateResourceResponse')
272
287
  UpdateTableObjectsRequest = Shapes::StructureShape.new(name: 'UpdateTableObjectsRequest')
@@ -393,6 +408,14 @@ module Aws::LakeFormation
393
408
 
394
409
  CreateLFTagResponse.struct_class = Types::CreateLFTagResponse
395
410
 
411
+ CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
412
+ CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
413
+ CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
414
+ CreateLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::CreateLakeFormationIdentityCenterConfigurationRequest
415
+
416
+ CreateLakeFormationIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
417
+ CreateLakeFormationIdentityCenterConfigurationResponse.struct_class = Types::CreateLakeFormationIdentityCenterConfigurationResponse
418
+
396
419
  CreateLakeFormationOptInRequest.add_member(:principal, Shapes::ShapeRef.new(shape: DataLakePrincipal, required: true, location_name: "Principal"))
397
420
  CreateLakeFormationOptInRequest.add_member(:resource, Shapes::ShapeRef.new(shape: Resource, required: true, location_name: "Resource"))
398
421
  CreateLakeFormationOptInRequest.struct_class = Types::CreateLakeFormationOptInRequest
@@ -458,6 +481,11 @@ module Aws::LakeFormation
458
481
 
459
482
  DeleteLFTagResponse.struct_class = Types::DeleteLFTagResponse
460
483
 
484
+ DeleteLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
485
+ DeleteLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::DeleteLakeFormationIdentityCenterConfigurationRequest
486
+
487
+ DeleteLakeFormationIdentityCenterConfigurationResponse.struct_class = Types::DeleteLakeFormationIdentityCenterConfigurationResponse
488
+
461
489
  DeleteLakeFormationOptInRequest.add_member(:principal, Shapes::ShapeRef.new(shape: DataLakePrincipal, required: true, location_name: "Principal"))
462
490
  DeleteLakeFormationOptInRequest.add_member(:resource, Shapes::ShapeRef.new(shape: Resource, required: true, location_name: "Resource"))
463
491
  DeleteLakeFormationOptInRequest.struct_class = Types::DeleteLakeFormationOptInRequest
@@ -483,6 +511,15 @@ module Aws::LakeFormation
483
511
 
484
512
  DeregisterResourceResponse.struct_class = Types::DeregisterResourceResponse
485
513
 
514
+ DescribeLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
515
+ DescribeLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::DescribeLakeFormationIdentityCenterConfigurationRequest
516
+
517
+ DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
518
+ DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
519
+ DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
520
+ DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
521
+ DescribeLakeFormationIdentityCenterConfigurationResponse.struct_class = Types::DescribeLakeFormationIdentityCenterConfigurationResponse
522
+
486
523
  DescribeResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
487
524
  DescribeResourceRequest.struct_class = Types::DescribeResourceRequest
488
525
 
@@ -520,6 +557,10 @@ module Aws::LakeFormation
520
557
 
521
558
  ExtendTransactionResponse.struct_class = Types::ExtendTransactionResponse
522
559
 
560
+ ExternalFilteringConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: EnableStatus, required: true, location_name: "Status"))
561
+ ExternalFilteringConfiguration.add_member(:authorized_targets, Shapes::ShapeRef.new(shape: ScopeTargets, required: true, location_name: "AuthorizedTargets"))
562
+ ExternalFilteringConfiguration.struct_class = Types::ExternalFilteringConfiguration
563
+
523
564
  FilterCondition.add_member(:field, Shapes::ShapeRef.new(shape: FieldNameString, location_name: "Field"))
524
565
  FilterCondition.add_member(:comparison_operator, Shapes::ShapeRef.new(shape: ComparisonOperator, location_name: "ComparisonOperator"))
525
566
  FilterCondition.add_member(:string_value_list, Shapes::ShapeRef.new(shape: StringValueList, location_name: "StringValueList"))
@@ -893,6 +934,8 @@ module Aws::LakeFormation
893
934
  RowFilter.add_member(:all_rows_wildcard, Shapes::ShapeRef.new(shape: AllRowsWildcard, location_name: "AllRowsWildcard"))
894
935
  RowFilter.struct_class = Types::RowFilter
895
936
 
937
+ ScopeTargets.member = Shapes::ShapeRef.new(shape: ScopeTarget)
938
+
896
939
  SearchDatabasesByLFTagsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
897
940
  SearchDatabasesByLFTagsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchPageSize, location_name: "MaxResults"))
898
941
  SearchDatabasesByLFTagsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
@@ -1017,6 +1060,13 @@ module Aws::LakeFormation
1017
1060
 
1018
1061
  UpdateLFTagResponse.struct_class = Types::UpdateLFTagResponse
1019
1062
 
1063
+ UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1064
+ UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:application_status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "ApplicationStatus"))
1065
+ UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
1066
+ UpdateLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::UpdateLakeFormationIdentityCenterConfigurationRequest
1067
+
1068
+ UpdateLakeFormationIdentityCenterConfigurationResponse.struct_class = Types::UpdateLakeFormationIdentityCenterConfigurationResponse
1069
+
1020
1070
  UpdateResourceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, required: true, location_name: "RoleArn"))
1021
1071
  UpdateResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
1022
1072
  UpdateResourceRequest.add_member(:with_federation, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "WithFederation"))
@@ -1190,6 +1240,20 @@ module Aws::LakeFormation
1190
1240
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1191
1241
  end)
1192
1242
 
1243
+ api.add_operation(:create_lake_formation_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
1244
+ o.name = "CreateLakeFormationIdentityCenterConfiguration"
1245
+ o.http_method = "POST"
1246
+ o.http_request_uri = "/CreateLakeFormationIdentityCenterConfiguration"
1247
+ o.input = Shapes::ShapeRef.new(shape: CreateLakeFormationIdentityCenterConfigurationRequest)
1248
+ o.output = Shapes::ShapeRef.new(shape: CreateLakeFormationIdentityCenterConfigurationResponse)
1249
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1250
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
1251
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
1252
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
1253
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1254
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1255
+ end)
1256
+
1193
1257
  api.add_operation(:create_lake_formation_opt_in, Seahorse::Model::Operation.new.tap do |o|
1194
1258
  o.name = "CreateLakeFormationOptIn"
1195
1259
  o.http_method = "POST"
@@ -1230,6 +1294,20 @@ module Aws::LakeFormation
1230
1294
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1231
1295
  end)
1232
1296
 
1297
+ api.add_operation(:delete_lake_formation_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
1298
+ o.name = "DeleteLakeFormationIdentityCenterConfiguration"
1299
+ o.http_method = "POST"
1300
+ o.http_request_uri = "/DeleteLakeFormationIdentityCenterConfiguration"
1301
+ o.input = Shapes::ShapeRef.new(shape: DeleteLakeFormationIdentityCenterConfigurationRequest)
1302
+ o.output = Shapes::ShapeRef.new(shape: DeleteLakeFormationIdentityCenterConfigurationResponse)
1303
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1304
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
1305
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
1306
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
1307
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1308
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1309
+ end)
1310
+
1233
1311
  api.add_operation(:delete_lake_formation_opt_in, Seahorse::Model::Operation.new.tap do |o|
1234
1312
  o.name = "DeleteLakeFormationOptIn"
1235
1313
  o.http_method = "POST"
@@ -1272,6 +1350,19 @@ module Aws::LakeFormation
1272
1350
  o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
1273
1351
  end)
1274
1352
 
1353
+ api.add_operation(:describe_lake_formation_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
1354
+ o.name = "DescribeLakeFormationIdentityCenterConfiguration"
1355
+ o.http_method = "POST"
1356
+ o.http_request_uri = "/DescribeLakeFormationIdentityCenterConfiguration"
1357
+ o.input = Shapes::ShapeRef.new(shape: DescribeLakeFormationIdentityCenterConfigurationRequest)
1358
+ o.output = Shapes::ShapeRef.new(shape: DescribeLakeFormationIdentityCenterConfigurationResponse)
1359
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1360
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
1361
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
1362
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
1363
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1364
+ end)
1365
+
1275
1366
  api.add_operation(:describe_resource, Seahorse::Model::Operation.new.tap do |o|
1276
1367
  o.name = "DescribeResource"
1277
1368
  o.http_method = "POST"
@@ -1777,6 +1868,20 @@ module Aws::LakeFormation
1777
1868
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1778
1869
  end)
1779
1870
 
1871
+ api.add_operation(:update_lake_formation_identity_center_configuration, Seahorse::Model::Operation.new.tap do |o|
1872
+ o.name = "UpdateLakeFormationIdentityCenterConfiguration"
1873
+ o.http_method = "POST"
1874
+ o.http_request_uri = "/UpdateLakeFormationIdentityCenterConfiguration"
1875
+ o.input = Shapes::ShapeRef.new(shape: UpdateLakeFormationIdentityCenterConfigurationRequest)
1876
+ o.output = Shapes::ShapeRef.new(shape: UpdateLakeFormationIdentityCenterConfigurationResponse)
1877
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
1878
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
1879
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
1880
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
1881
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1882
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
1883
+ end)
1884
+
1780
1885
  api.add_operation(:update_resource, Seahorse::Model::Operation.new.tap do |o|
1781
1886
  o.name = "UpdateResource"
1782
1887
  o.http_method = "POST"
@@ -32,7 +32,7 @@ module Aws::LakeFormation
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://lakeformation-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -124,6 +124,20 @@ module Aws::LakeFormation
124
124
  end
125
125
  end
126
126
 
127
+ class CreateLakeFormationIdentityCenterConfiguration
128
+ def self.build(context)
129
+ unless context.config.regional_endpoint
130
+ endpoint = context.config.endpoint.to_s
131
+ end
132
+ Aws::LakeFormation::EndpointParameters.new(
133
+ region: context.config.region,
134
+ use_dual_stack: context.config.use_dualstack_endpoint,
135
+ use_fips: context.config.use_fips_endpoint,
136
+ endpoint: endpoint,
137
+ )
138
+ end
139
+ end
140
+
127
141
  class CreateLakeFormationOptIn
128
142
  def self.build(context)
129
143
  unless context.config.regional_endpoint
@@ -166,6 +180,20 @@ module Aws::LakeFormation
166
180
  end
167
181
  end
168
182
 
183
+ class DeleteLakeFormationIdentityCenterConfiguration
184
+ def self.build(context)
185
+ unless context.config.regional_endpoint
186
+ endpoint = context.config.endpoint.to_s
187
+ end
188
+ Aws::LakeFormation::EndpointParameters.new(
189
+ region: context.config.region,
190
+ use_dual_stack: context.config.use_dualstack_endpoint,
191
+ use_fips: context.config.use_fips_endpoint,
192
+ endpoint: endpoint,
193
+ )
194
+ end
195
+ end
196
+
169
197
  class DeleteLakeFormationOptIn
170
198
  def self.build(context)
171
199
  unless context.config.regional_endpoint
@@ -208,6 +236,20 @@ module Aws::LakeFormation
208
236
  end
209
237
  end
210
238
 
239
+ class DescribeLakeFormationIdentityCenterConfiguration
240
+ def self.build(context)
241
+ unless context.config.regional_endpoint
242
+ endpoint = context.config.endpoint.to_s
243
+ end
244
+ Aws::LakeFormation::EndpointParameters.new(
245
+ region: context.config.region,
246
+ use_dual_stack: context.config.use_dualstack_endpoint,
247
+ use_fips: context.config.use_fips_endpoint,
248
+ endpoint: endpoint,
249
+ )
250
+ end
251
+ end
252
+
211
253
  class DescribeResource
212
254
  def self.build(context)
213
255
  unless context.config.regional_endpoint
@@ -670,6 +712,20 @@ module Aws::LakeFormation
670
712
  end
671
713
  end
672
714
 
715
+ class UpdateLakeFormationIdentityCenterConfiguration
716
+ def self.build(context)
717
+ unless context.config.regional_endpoint
718
+ endpoint = context.config.endpoint.to_s
719
+ end
720
+ Aws::LakeFormation::EndpointParameters.new(
721
+ region: context.config.region,
722
+ use_dual_stack: context.config.use_dualstack_endpoint,
723
+ use_fips: context.config.use_fips_endpoint,
724
+ endpoint: endpoint,
725
+ )
726
+ end
727
+ end
728
+
673
729
  class UpdateResource
674
730
  def self.build(context)
675
731
  unless context.config.regional_endpoint
@@ -72,18 +72,24 @@ module Aws::LakeFormation
72
72
  Aws::LakeFormation::Endpoints::CreateDataCellsFilter.build(context)
73
73
  when :create_lf_tag
74
74
  Aws::LakeFormation::Endpoints::CreateLFTag.build(context)
75
+ when :create_lake_formation_identity_center_configuration
76
+ Aws::LakeFormation::Endpoints::CreateLakeFormationIdentityCenterConfiguration.build(context)
75
77
  when :create_lake_formation_opt_in
76
78
  Aws::LakeFormation::Endpoints::CreateLakeFormationOptIn.build(context)
77
79
  when :delete_data_cells_filter
78
80
  Aws::LakeFormation::Endpoints::DeleteDataCellsFilter.build(context)
79
81
  when :delete_lf_tag
80
82
  Aws::LakeFormation::Endpoints::DeleteLFTag.build(context)
83
+ when :delete_lake_formation_identity_center_configuration
84
+ Aws::LakeFormation::Endpoints::DeleteLakeFormationIdentityCenterConfiguration.build(context)
81
85
  when :delete_lake_formation_opt_in
82
86
  Aws::LakeFormation::Endpoints::DeleteLakeFormationOptIn.build(context)
83
87
  when :delete_objects_on_cancel
84
88
  Aws::LakeFormation::Endpoints::DeleteObjectsOnCancel.build(context)
85
89
  when :deregister_resource
86
90
  Aws::LakeFormation::Endpoints::DeregisterResource.build(context)
91
+ when :describe_lake_formation_identity_center_configuration
92
+ Aws::LakeFormation::Endpoints::DescribeLakeFormationIdentityCenterConfiguration.build(context)
87
93
  when :describe_resource
88
94
  Aws::LakeFormation::Endpoints::DescribeResource.build(context)
89
95
  when :describe_transaction
@@ -150,6 +156,8 @@ module Aws::LakeFormation
150
156
  Aws::LakeFormation::Endpoints::UpdateDataCellsFilter.build(context)
151
157
  when :update_lf_tag
152
158
  Aws::LakeFormation::Endpoints::UpdateLFTag.build(context)
159
+ when :update_lake_formation_identity_center_configuration
160
+ Aws::LakeFormation::Endpoints::UpdateLakeFormationIdentityCenterConfiguration.build(context)
153
161
  when :update_resource
154
162
  Aws::LakeFormation::Endpoints::UpdateResource.build(context)
155
163
  when :update_table_objects
@@ -463,6 +463,48 @@ module Aws::LakeFormation
463
463
  #
464
464
  class CreateLFTagResponse < Aws::EmptyStructure; end
465
465
 
466
+ # @!attribute [rw] catalog_id
467
+ # The identifier for the Data Catalog. By default, the account ID. The
468
+ # Data Catalog is the persistent metadata store. It contains database
469
+ # definitions, table definitions, view definitions, and other control
470
+ # information to manage your Lake Formation environment.
471
+ # @return [String]
472
+ #
473
+ # @!attribute [rw] instance_arn
474
+ # The ARN of the IAM Identity Center instance for which the operation
475
+ # will be executed. For more information about ARNs, see Amazon
476
+ # Resource Names (ARNs) and Amazon Web Services Service Namespaces in
477
+ # the Amazon Web Services General Reference.
478
+ # @return [String]
479
+ #
480
+ # @!attribute [rw] external_filtering
481
+ # A list of the account IDs of Amazon Web Services accounts of
482
+ # third-party applications that are allowed to to access data managed
483
+ # by Lake Formation.
484
+ # @return [Types::ExternalFilteringConfiguration]
485
+ #
486
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/CreateLakeFormationIdentityCenterConfigurationRequest AWS API Documentation
487
+ #
488
+ class CreateLakeFormationIdentityCenterConfigurationRequest < Struct.new(
489
+ :catalog_id,
490
+ :instance_arn,
491
+ :external_filtering)
492
+ SENSITIVE = []
493
+ include Aws::Structure
494
+ end
495
+
496
+ # @!attribute [rw] application_arn
497
+ # The Amazon Resource Name (ARN) of the integrated application.
498
+ # @return [String]
499
+ #
500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/CreateLakeFormationIdentityCenterConfigurationResponse AWS API Documentation
501
+ #
502
+ class CreateLakeFormationIdentityCenterConfigurationResponse < Struct.new(
503
+ :application_arn)
504
+ SENSITIVE = []
505
+ include Aws::Structure
506
+ end
507
+
466
508
  # @!attribute [rw] principal
467
509
  # The Lake Formation principal. Supported principals are IAM users or
468
510
  # IAM roles.
@@ -649,9 +691,9 @@ module Aws::LakeFormation
649
691
  #
650
692
  # @!attribute [rw] parameters
651
693
  # A key-value map that provides an additional configuration on your
652
- # data lake. CrossAccountVersion is the key you can configure in the
653
- # Parameters field. Accepted values for the CrossAccountVersion key
654
- # are 1, 2, and 3.
694
+ # data lake. CROSS\_ACCOUNT\_VERSION is the key you can configure in
695
+ # the Parameters field. Accepted values for the CrossAccountVersion
696
+ # key are 1, 2, 3, and 4.
655
697
  # @return [Hash<String,String>]
656
698
  #
657
699
  # @!attribute [rw] trusted_resource_owners
@@ -816,6 +858,25 @@ module Aws::LakeFormation
816
858
  #
817
859
  class DeleteLFTagResponse < Aws::EmptyStructure; end
818
860
 
861
+ # @!attribute [rw] catalog_id
862
+ # The identifier for the Data Catalog. By default, the account ID. The
863
+ # Data Catalog is the persistent metadata store. It contains database
864
+ # definitions, table definitions, view definition, and other control
865
+ # information to manage your Lake Formation environment.
866
+ # @return [String]
867
+ #
868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DeleteLakeFormationIdentityCenterConfigurationRequest AWS API Documentation
869
+ #
870
+ class DeleteLakeFormationIdentityCenterConfigurationRequest < Struct.new(
871
+ :catalog_id)
872
+ SENSITIVE = []
873
+ include Aws::Structure
874
+ end
875
+
876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DeleteLakeFormationIdentityCenterConfigurationResponse AWS API Documentation
877
+ #
878
+ class DeleteLakeFormationIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
879
+
819
880
  # @!attribute [rw] principal
820
881
  # The Lake Formation principal. Supported principals are IAM users or
821
882
  # IAM roles.
@@ -919,6 +980,51 @@ module Aws::LakeFormation
919
980
  #
920
981
  class DeregisterResourceResponse < Aws::EmptyStructure; end
921
982
 
983
+ # @!attribute [rw] catalog_id
984
+ # The identifier for the Data Catalog. By default, the account ID. The
985
+ # Data Catalog is the persistent metadata store. It contains database
986
+ # definitions, table definitions, and other control information to
987
+ # manage your Lake Formation environment.
988
+ # @return [String]
989
+ #
990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfigurationRequest AWS API Documentation
991
+ #
992
+ class DescribeLakeFormationIdentityCenterConfigurationRequest < Struct.new(
993
+ :catalog_id)
994
+ SENSITIVE = []
995
+ include Aws::Structure
996
+ end
997
+
998
+ # @!attribute [rw] catalog_id
999
+ # The identifier for the Data Catalog. By default, the account ID. The
1000
+ # Data Catalog is the persistent metadata store. It contains database
1001
+ # definitions, table definitions, and other control information to
1002
+ # manage your Lake Formation environment.
1003
+ # @return [String]
1004
+ #
1005
+ # @!attribute [rw] instance_arn
1006
+ # The Amazon Resource Name (ARN) of the connection.
1007
+ # @return [String]
1008
+ #
1009
+ # @!attribute [rw] application_arn
1010
+ # The Amazon Resource Name (ARN) of the integrated application.
1011
+ # @return [String]
1012
+ #
1013
+ # @!attribute [rw] external_filtering
1014
+ # Indicates if external filtering is enabled.
1015
+ # @return [Types::ExternalFilteringConfiguration]
1016
+ #
1017
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfigurationResponse AWS API Documentation
1018
+ #
1019
+ class DescribeLakeFormationIdentityCenterConfigurationResponse < Struct.new(
1020
+ :catalog_id,
1021
+ :instance_arn,
1022
+ :application_arn,
1023
+ :external_filtering)
1024
+ SENSITIVE = []
1025
+ include Aws::Structure
1026
+ end
1027
+
922
1028
  # @!attribute [rw] resource_arn
923
1029
  # The resource ARN.
924
1030
  # @return [String]
@@ -1073,6 +1179,28 @@ module Aws::LakeFormation
1073
1179
  #
1074
1180
  class ExtendTransactionResponse < Aws::EmptyStructure; end
1075
1181
 
1182
+ # Configuration for enabling external data filtering for third-party
1183
+ # applications to access data managed by Lake Formation .
1184
+ #
1185
+ # @!attribute [rw] status
1186
+ # Allows to enable or disable the third-party applications that are
1187
+ # allowed to access data managed by Lake Formation.
1188
+ # @return [String]
1189
+ #
1190
+ # @!attribute [rw] authorized_targets
1191
+ # List of third-party application `ARNs` integrated with Lake
1192
+ # Formation.
1193
+ # @return [Array<String>]
1194
+ #
1195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/ExternalFilteringConfiguration AWS API Documentation
1196
+ #
1197
+ class ExternalFilteringConfiguration < Struct.new(
1198
+ :status,
1199
+ :authorized_targets)
1200
+ SENSITIVE = []
1201
+ include Aws::Structure
1202
+ end
1203
+
1076
1204
  # This structure describes the filtering of columns in a table based on
1077
1205
  # a filter condition.
1078
1206
  #
@@ -2896,7 +3024,8 @@ module Aws::LakeFormation
2896
3024
 
2897
3025
  # @!attribute [rw] next_token
2898
3026
  # A continuation token, present if the current list segment is not the
2899
- # last.
3027
+ # last. On the first run, if you include a not null (a value) token
3028
+ # you can get empty pages.
2900
3029
  # @return [String]
2901
3030
  #
2902
3031
  # @!attribute [rw] table_list
@@ -3336,6 +3465,37 @@ module Aws::LakeFormation
3336
3465
  #
3337
3466
  class UpdateLFTagResponse < Aws::EmptyStructure; end
3338
3467
 
3468
+ # @!attribute [rw] catalog_id
3469
+ # The identifier for the Data Catalog. By default, the account ID. The
3470
+ # Data Catalog is the persistent metadata store. It contains database
3471
+ # definitions, table definitions, view definitions, and other control
3472
+ # information to manage your Lake Formation environment.
3473
+ # @return [String]
3474
+ #
3475
+ # @!attribute [rw] application_status
3476
+ # Allows to enable or disable the IAM Identity Center connection.
3477
+ # @return [String]
3478
+ #
3479
+ # @!attribute [rw] external_filtering
3480
+ # A list of the account IDs of Amazon Web Services accounts of
3481
+ # third-party applications that are allowed to access data managed by
3482
+ # Lake Formation.
3483
+ # @return [Types::ExternalFilteringConfiguration]
3484
+ #
3485
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateLakeFormationIdentityCenterConfigurationRequest AWS API Documentation
3486
+ #
3487
+ class UpdateLakeFormationIdentityCenterConfigurationRequest < Struct.new(
3488
+ :catalog_id,
3489
+ :application_status,
3490
+ :external_filtering)
3491
+ SENSITIVE = []
3492
+ include Aws::Structure
3493
+ end
3494
+
3495
+ # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/UpdateLakeFormationIdentityCenterConfigurationResponse AWS API Documentation
3496
+ #
3497
+ class UpdateLakeFormationIdentityCenterConfigurationResponse < Aws::EmptyStructure; end
3498
+
3339
3499
  # @!attribute [rw] role_arn
3340
3500
  # The new role to use for the given resource registered in Lake
3341
3501
  # Formation.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-lakeformation/customizations'
52
52
  # @!group service
53
53
  module Aws::LakeFormation
54
54
 
55
- GEM_VERSION = '1.43.0'
55
+ GEM_VERSION = '1.44.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lakeformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-22 00:00:00.000000000 Z
11
+ date: 2023-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core