aws-sdk-lakeformation 1.47.0 → 1.48.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 813e2edc1b405e43c61273bb4fcc9d66a5e0154ffb65d112350e1ed036aecb09
4
- data.tar.gz: 31286fa5e62a1926c283904dc5baf8d4869f92c3df7e432c4ffbb7f032231357
3
+ metadata.gz: 9c16e48b6a469ad5ecae0f61f5605c590839146cfcbaef645b85ed9fd7aafa2a
4
+ data.tar.gz: 482c6f4a3f81722686123b5ae6a8cb33e145f759a41cb75e3047aeaf4a095dfb
5
5
  SHA512:
6
- metadata.gz: b2e03e9a03bb68738d2bcdff02940d9c7b5497fca60153eba18cf8767f972d79450b0730273481c7359638e33cc5b7a972d35c3797414ee4308e314f12c0a3b9
7
- data.tar.gz: e28c26510c4d5ef86de0610467c8aa562c6246503cf1817f2e9de7368c62080ddec4a284fad181725b0ddf3e5ee49030ba9f92007f0f30fc43b079e57b04d57b
6
+ metadata.gz: 72d5c226be428058873c22b55ff2cb8587d11f59d5abb0eee343e4779ff3b79b1298cd692fd6cf225edc1b346028cfa62ad2819eb522937ba228dde4556212c1
7
+ data.tar.gz: 918a83599920d22184978c4898180848ed51222f8c33261008d3ec85655aaf4b42c422507eaf7a14eb9db231d2b14e5805f3b40d399c58b467d7adc73012a447
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.48.0 (2024-04-16)
5
+ ------------------
6
+
7
+ * Feature - This release adds Lake Formation managed RAM support for the 4 APIs - "DescribeLakeFormationIdentityCenterConfiguration", "CreateLakeFormationIdentityCenterConfiguration", "DescribeLakeFormationIdentityCenterConfiguration", and "DeleteLakeFormationIdentityCenterConfiguration"
8
+
4
9
  1.47.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -959,6 +959,18 @@ module Aws::LakeFormation
959
959
  # third-party applications that are allowed to access data managed by
960
960
  # Lake Formation.
961
961
  #
962
+ # @option params [Array<Types::DataLakePrincipal>] :share_recipients
963
+ # A list of Amazon Web Services account IDs and/or Amazon Web Services
964
+ # organization/organizational unit ARNs that are allowed to access data
965
+ # managed by Lake Formation.
966
+ #
967
+ # If the `ShareRecipients` list includes valid values, a resource share
968
+ # is created with the principals you want to have access to the
969
+ # resources.
970
+ #
971
+ # If the `ShareRecipients` value is null or the list is empty, no
972
+ # resource share is created.
973
+ #
962
974
  # @return [Types::CreateLakeFormationIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
963
975
  #
964
976
  # * {Types::CreateLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
@@ -972,6 +984,11 @@ module Aws::LakeFormation
972
984
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
973
985
  # authorized_targets: ["ScopeTarget"], # required
974
986
  # },
987
+ # share_recipients: [
988
+ # {
989
+ # data_lake_principal_identifier: "DataLakePrincipalString",
990
+ # },
991
+ # ],
975
992
  # })
976
993
  #
977
994
  # @example Response structure
@@ -1334,6 +1351,8 @@ module Aws::LakeFormation
1334
1351
  # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
1335
1352
  # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
1336
1353
  # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#external_filtering #external_filtering} => Types::ExternalFilteringConfiguration
1354
+ # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#share_recipients #share_recipients} => Array&lt;Types::DataLakePrincipal&gt;
1355
+ # * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#resource_share #resource_share} => String
1337
1356
  #
1338
1357
  # @example Request syntax with placeholder values
1339
1358
  #
@@ -1349,6 +1368,9 @@ module Aws::LakeFormation
1349
1368
  # resp.external_filtering.status #=> String, one of "ENABLED", "DISABLED"
1350
1369
  # resp.external_filtering.authorized_targets #=> Array
1351
1370
  # resp.external_filtering.authorized_targets[0] #=> String
1371
+ # resp.share_recipients #=> Array
1372
+ # resp.share_recipients[0].data_lake_principal_identifier #=> String
1373
+ # resp.resource_share #=> String
1352
1374
  #
1353
1375
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfiguration AWS API Documentation
1354
1376
  #
@@ -3528,6 +3550,22 @@ module Aws::LakeFormation
3528
3550
  # definitions, table definitions, view definitions, and other control
3529
3551
  # information to manage your Lake Formation environment.
3530
3552
  #
3553
+ # @option params [Array<Types::DataLakePrincipal>] :share_recipients
3554
+ # A list of Amazon Web Services account IDs or Amazon Web Services
3555
+ # organization/organizational unit ARNs that are allowed to access to
3556
+ # access data managed by Lake Formation.
3557
+ #
3558
+ # If the `ShareRecipients` list includes valid values, then the resource
3559
+ # share is updated with the principals you want to have access to the
3560
+ # resources.
3561
+ #
3562
+ # If the `ShareRecipients` value is null, both the list of share
3563
+ # recipients and the resource share remain unchanged.
3564
+ #
3565
+ # If the `ShareRecipients` value is an empty list, then the existing
3566
+ # share recipients list will be cleared, and the resource share will be
3567
+ # deleted.
3568
+ #
3531
3569
  # @option params [String] :application_status
3532
3570
  # Allows to enable or disable the IAM Identity Center connection.
3533
3571
  #
@@ -3542,6 +3580,11 @@ module Aws::LakeFormation
3542
3580
  #
3543
3581
  # resp = client.update_lake_formation_identity_center_configuration({
3544
3582
  # catalog_id: "CatalogIdString",
3583
+ # share_recipients: [
3584
+ # {
3585
+ # data_lake_principal_identifier: "DataLakePrincipalString",
3586
+ # },
3587
+ # ],
3545
3588
  # application_status: "ENABLED", # accepts ENABLED, DISABLED
3546
3589
  # external_filtering: {
3547
3590
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
@@ -3708,7 +3751,7 @@ module Aws::LakeFormation
3708
3751
  params: params,
3709
3752
  config: config)
3710
3753
  context[:gem_name] = 'aws-sdk-lakeformation'
3711
- context[:gem_version] = '1.47.0'
3754
+ context[:gem_version] = '1.48.0'
3712
3755
  Seahorse::Client::Request.new(handlers, context)
3713
3756
  end
3714
3757
 
@@ -422,6 +422,7 @@ module Aws::LakeFormation
422
422
  CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
423
423
  CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
424
424
  CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
425
+ CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:share_recipients, Shapes::ShapeRef.new(shape: DataLakePrincipalList, location_name: "ShareRecipients"))
425
426
  CreateLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::CreateLakeFormationIdentityCenterConfigurationRequest
426
427
 
427
428
  CreateLakeFormationIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
@@ -529,6 +530,8 @@ module Aws::LakeFormation
529
530
  DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
530
531
  DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
531
532
  DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
533
+ DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:share_recipients, Shapes::ShapeRef.new(shape: DataLakePrincipalList, location_name: "ShareRecipients"))
534
+ DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:resource_share, Shapes::ShapeRef.new(shape: RAMResourceShareArn, location_name: "ResourceShare"))
532
535
  DescribeLakeFormationIdentityCenterConfigurationResponse.struct_class = Types::DescribeLakeFormationIdentityCenterConfigurationResponse
533
536
 
534
537
  DescribeResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
@@ -1084,6 +1087,7 @@ module Aws::LakeFormation
1084
1087
  UpdateLFTagResponse.struct_class = Types::UpdateLFTagResponse
1085
1088
 
1086
1089
  UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1090
+ UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:share_recipients, Shapes::ShapeRef.new(shape: DataLakePrincipalList, location_name: "ShareRecipients"))
1087
1091
  UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:application_status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "ApplicationStatus"))
1088
1092
  UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
1089
1093
  UpdateLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::UpdateLakeFormationIdentityCenterConfigurationRequest
@@ -483,18 +483,33 @@ module Aws::LakeFormation
483
483
  # Lake Formation.
484
484
  # @return [Types::ExternalFilteringConfiguration]
485
485
  #
486
+ # @!attribute [rw] share_recipients
487
+ # A list of Amazon Web Services account IDs and/or Amazon Web Services
488
+ # organization/organizational unit ARNs that are allowed to access
489
+ # data managed by Lake Formation.
490
+ #
491
+ # If the `ShareRecipients` list includes valid values, a resource
492
+ # share is created with the principals you want to have access to the
493
+ # resources.
494
+ #
495
+ # If the `ShareRecipients` value is null or the list is empty, no
496
+ # resource share is created.
497
+ # @return [Array<Types::DataLakePrincipal>]
498
+ #
486
499
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/CreateLakeFormationIdentityCenterConfigurationRequest AWS API Documentation
487
500
  #
488
501
  class CreateLakeFormationIdentityCenterConfigurationRequest < Struct.new(
489
502
  :catalog_id,
490
503
  :instance_arn,
491
- :external_filtering)
504
+ :external_filtering,
505
+ :share_recipients)
492
506
  SENSITIVE = []
493
507
  include Aws::Structure
494
508
  end
495
509
 
496
510
  # @!attribute [rw] application_arn
497
- # The Amazon Resource Name (ARN) of the integrated application.
511
+ # The Amazon Resource Name (ARN) of the Lake Formation application
512
+ # integrated with IAM Identity Center.
498
513
  # @return [String]
499
514
  #
500
515
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/CreateLakeFormationIdentityCenterConfigurationResponse AWS API Documentation
@@ -1007,20 +1022,40 @@ module Aws::LakeFormation
1007
1022
  # @return [String]
1008
1023
  #
1009
1024
  # @!attribute [rw] application_arn
1010
- # The Amazon Resource Name (ARN) of the integrated application.
1025
+ # The Amazon Resource Name (ARN) of the Lake Formation application
1026
+ # integrated with IAM Identity Center.
1011
1027
  # @return [String]
1012
1028
  #
1013
1029
  # @!attribute [rw] external_filtering
1014
1030
  # Indicates if external filtering is enabled.
1015
1031
  # @return [Types::ExternalFilteringConfiguration]
1016
1032
  #
1033
+ # @!attribute [rw] share_recipients
1034
+ # A list of Amazon Web Services account IDs or Amazon Web Services
1035
+ # organization/organizational unit ARNs that are allowed to access
1036
+ # data managed by Lake Formation.
1037
+ #
1038
+ # If the `ShareRecipients` list includes valid values, a resource
1039
+ # share is created with the principals you want to have access to the
1040
+ # resources as the `ShareRecipients`.
1041
+ #
1042
+ # If the `ShareRecipients` value is null or the list is empty, no
1043
+ # resource share is created.
1044
+ # @return [Array<Types::DataLakePrincipal>]
1045
+ #
1046
+ # @!attribute [rw] resource_share
1047
+ # The Amazon Resource Name (ARN) of the RAM share.
1048
+ # @return [String]
1049
+ #
1017
1050
  # @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfigurationResponse AWS API Documentation
1018
1051
  #
1019
1052
  class DescribeLakeFormationIdentityCenterConfigurationResponse < Struct.new(
1020
1053
  :catalog_id,
1021
1054
  :instance_arn,
1022
1055
  :application_arn,
1023
- :external_filtering)
1056
+ :external_filtering,
1057
+ :share_recipients,
1058
+ :resource_share)
1024
1059
  SENSITIVE = []
1025
1060
  include Aws::Structure
1026
1061
  end
@@ -3528,6 +3563,23 @@ module Aws::LakeFormation
3528
3563
  # information to manage your Lake Formation environment.
3529
3564
  # @return [String]
3530
3565
  #
3566
+ # @!attribute [rw] share_recipients
3567
+ # A list of Amazon Web Services account IDs or Amazon Web Services
3568
+ # organization/organizational unit ARNs that are allowed to access to
3569
+ # access data managed by Lake Formation.
3570
+ #
3571
+ # If the `ShareRecipients` list includes valid values, then the
3572
+ # resource share is updated with the principals you want to have
3573
+ # access to the resources.
3574
+ #
3575
+ # If the `ShareRecipients` value is null, both the list of share
3576
+ # recipients and the resource share remain unchanged.
3577
+ #
3578
+ # If the `ShareRecipients` value is an empty list, then the existing
3579
+ # share recipients list will be cleared, and the resource share will
3580
+ # be deleted.
3581
+ # @return [Array<Types::DataLakePrincipal>]
3582
+ #
3531
3583
  # @!attribute [rw] application_status
3532
3584
  # Allows to enable or disable the IAM Identity Center connection.
3533
3585
  # @return [String]
@@ -3542,6 +3594,7 @@ module Aws::LakeFormation
3542
3594
  #
3543
3595
  class UpdateLakeFormationIdentityCenterConfigurationRequest < Struct.new(
3544
3596
  :catalog_id,
3597
+ :share_recipients,
3545
3598
  :application_status,
3546
3599
  :external_filtering)
3547
3600
  SENSITIVE = []
@@ -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.47.0'
55
+ GEM_VERSION = '1.48.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -357,7 +357,12 @@ module Aws
357
357
  ?external_filtering: {
358
358
  status: ("ENABLED" | "DISABLED"),
359
359
  authorized_targets: Array[::String]
360
- }
360
+ },
361
+ ?share_recipients: Array[
362
+ {
363
+ data_lake_principal_identifier: ::String?
364
+ },
365
+ ]
361
366
  ) -> _CreateLakeFormationIdentityCenterConfigurationResponseSuccess
362
367
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLakeFormationIdentityCenterConfigurationResponseSuccess
363
368
 
@@ -545,6 +550,8 @@ module Aws
545
550
  def instance_arn: () -> ::String
546
551
  def application_arn: () -> ::String
547
552
  def external_filtering: () -> Types::ExternalFilteringConfiguration
553
+ def share_recipients: () -> ::Array[Types::DataLakePrincipal]
554
+ def resource_share: () -> ::String
548
555
  end
549
556
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#describe_lake_formation_identity_center_configuration-instance_method
550
557
  def describe_lake_formation_identity_center_configuration: (
@@ -1381,6 +1388,11 @@ module Aws
1381
1388
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#update_lake_formation_identity_center_configuration-instance_method
1382
1389
  def update_lake_formation_identity_center_configuration: (
1383
1390
  ?catalog_id: ::String,
1391
+ ?share_recipients: Array[
1392
+ {
1393
+ data_lake_principal_identifier: ::String?
1394
+ },
1395
+ ],
1384
1396
  ?application_status: ("ENABLED" | "DISABLED"),
1385
1397
  ?external_filtering: {
1386
1398
  status: ("ENABLED" | "DISABLED"),
data/sig/types.rbs CHANGED
@@ -158,6 +158,7 @@ module Aws::LakeFormation
158
158
  attr_accessor catalog_id: ::String
159
159
  attr_accessor instance_arn: ::String
160
160
  attr_accessor external_filtering: Types::ExternalFilteringConfiguration
161
+ attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
161
162
  SENSITIVE: []
162
163
  end
163
164
 
@@ -300,6 +301,8 @@ module Aws::LakeFormation
300
301
  attr_accessor instance_arn: ::String
301
302
  attr_accessor application_arn: ::String
302
303
  attr_accessor external_filtering: Types::ExternalFilteringConfiguration
304
+ attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
305
+ attr_accessor resource_share: ::String
303
306
  SENSITIVE: []
304
307
  end
305
308
 
@@ -1009,6 +1012,7 @@ module Aws::LakeFormation
1009
1012
 
1010
1013
  class UpdateLakeFormationIdentityCenterConfigurationRequest
1011
1014
  attr_accessor catalog_id: ::String
1015
+ attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
1012
1016
  attr_accessor application_status: ("ENABLED" | "DISABLED")
1013
1017
  attr_accessor external_filtering: Types::ExternalFilteringConfiguration
1014
1018
  SENSITIVE: []
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.47.0
4
+ version: 1.48.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core