aws-sdk-lakeformation 1.46.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: dd6854c58e8eeba79b7a63aca551a32a776c11f4720dee1de378702a9464878e
4
- data.tar.gz: fb99b30bfd97525fbe02d04d9354132a5d9a911fa5d83a3388368416f54a6f28
3
+ metadata.gz: 9c16e48b6a469ad5ecae0f61f5605c590839146cfcbaef645b85ed9fd7aafa2a
4
+ data.tar.gz: 482c6f4a3f81722686123b5ae6a8cb33e145f759a41cb75e3047aeaf4a095dfb
5
5
  SHA512:
6
- metadata.gz: 78d30b1abb502ee336252f397850cfbb4549a2451893986a485424b0603b4490c2624bd95caf461aa166c9569909c5d896ef5b47c2dc61592a1117ae74aa216a
7
- data.tar.gz: b9fa2978df420001b94ff115717f62eff24aed4c7830f022c77b52a69c51938fe8d25e2027dd31cfab11a9347d7c5b15d8345f9c9984528072b0515e723c0d89
6
+ metadata.gz: 72d5c226be428058873c22b55ff2cb8587d11f59d5abb0eee343e4779ff3b79b1298cd692fd6cf225edc1b346028cfa62ad2819eb522937ba228dde4556212c1
7
+ data.tar.gz: 918a83599920d22184978c4898180848ed51222f8c33261008d3ec85655aaf4b42c422507eaf7a14eb9db231d2b14e5805f3b40d399c58b467d7adc73012a447
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.47.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.46.0 (2023-12-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.46.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.46.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
@@ -14,6 +14,7 @@ module Aws::LakeFormation
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::LakeFormation::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -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.46.0'
55
+ GEM_VERSION = '1.48.0'
56
56
 
57
57
  end