aws-sdk-lakeformation 1.47.0 → 1.49.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lakeformation/client.rb +113 -46
- data/lib/aws-sdk-lakeformation/client_api.rb +4 -0
- data/lib/aws-sdk-lakeformation/types.rb +57 -4
- data/lib/aws-sdk-lakeformation.rb +1 -1
- data/sig/client.rbs +13 -1
- data/sig/types.rbs +4 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26b02a82a81dd19d5392563af2cd387fb4304a341b2ad34ea69fc99751f57e24
|
4
|
+
data.tar.gz: 74d07ee414a1e383c9bf16e4bb5a98e3170f8e9f71287f9c740fd1e1328664a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8ff77639b4643f96ade5db206e4fa13a683b7319dc6420d5bcc651e8dbb3eae07b2d62e7a0a8f86053c07eaae3c13008770f1897ced1391791b795b5c5eee34
|
7
|
+
data.tar.gz: 6cbfda922c4aba9d85d3dceb45362749099a239cfc720a86bf86dbc4eb0c6d4da427c060a92d9a579e76178a26a3f085d8a21791723b593e1784d2954337ed89
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.48.0 (2024-04-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds Lake Formation managed RAM support for the 4 APIs - "DescribeLakeFormationIdentityCenterConfiguration", "CreateLakeFormationIdentityCenterConfiguration", "DescribeLakeFormationIdentityCenterConfiguration", and "DeleteLakeFormationIdentityCenterConfiguration"
|
13
|
+
|
4
14
|
1.47.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::LakeFormation
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::LakeFormation
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::LakeFormation
|
|
337
346
|
# @option options [Aws::LakeFormation::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::LakeFormation::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -959,6 +983,18 @@ module Aws::LakeFormation
|
|
959
983
|
# third-party applications that are allowed to access data managed by
|
960
984
|
# Lake Formation.
|
961
985
|
#
|
986
|
+
# @option params [Array<Types::DataLakePrincipal>] :share_recipients
|
987
|
+
# A list of Amazon Web Services account IDs and/or Amazon Web Services
|
988
|
+
# organization/organizational unit ARNs that are allowed to access data
|
989
|
+
# managed by Lake Formation.
|
990
|
+
#
|
991
|
+
# If the `ShareRecipients` list includes valid values, a resource share
|
992
|
+
# is created with the principals you want to have access to the
|
993
|
+
# resources.
|
994
|
+
#
|
995
|
+
# If the `ShareRecipients` value is null or the list is empty, no
|
996
|
+
# resource share is created.
|
997
|
+
#
|
962
998
|
# @return [Types::CreateLakeFormationIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
963
999
|
#
|
964
1000
|
# * {Types::CreateLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
@@ -972,6 +1008,11 @@ module Aws::LakeFormation
|
|
972
1008
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
973
1009
|
# authorized_targets: ["ScopeTarget"], # required
|
974
1010
|
# },
|
1011
|
+
# share_recipients: [
|
1012
|
+
# {
|
1013
|
+
# data_lake_principal_identifier: "DataLakePrincipalString",
|
1014
|
+
# },
|
1015
|
+
# ],
|
975
1016
|
# })
|
976
1017
|
#
|
977
1018
|
# @example Response structure
|
@@ -1334,6 +1375,8 @@ module Aws::LakeFormation
|
|
1334
1375
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#instance_arn #instance_arn} => String
|
1335
1376
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
1336
1377
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#external_filtering #external_filtering} => Types::ExternalFilteringConfiguration
|
1378
|
+
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#share_recipients #share_recipients} => Array<Types::DataLakePrincipal>
|
1379
|
+
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#resource_share #resource_share} => String
|
1337
1380
|
#
|
1338
1381
|
# @example Request syntax with placeholder values
|
1339
1382
|
#
|
@@ -1349,6 +1392,9 @@ module Aws::LakeFormation
|
|
1349
1392
|
# resp.external_filtering.status #=> String, one of "ENABLED", "DISABLED"
|
1350
1393
|
# resp.external_filtering.authorized_targets #=> Array
|
1351
1394
|
# resp.external_filtering.authorized_targets[0] #=> String
|
1395
|
+
# resp.share_recipients #=> Array
|
1396
|
+
# resp.share_recipients[0].data_lake_principal_identifier #=> String
|
1397
|
+
# resp.resource_share #=> String
|
1352
1398
|
#
|
1353
1399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfiguration AWS API Documentation
|
1354
1400
|
#
|
@@ -3528,6 +3574,22 @@ module Aws::LakeFormation
|
|
3528
3574
|
# definitions, table definitions, view definitions, and other control
|
3529
3575
|
# information to manage your Lake Formation environment.
|
3530
3576
|
#
|
3577
|
+
# @option params [Array<Types::DataLakePrincipal>] :share_recipients
|
3578
|
+
# A list of Amazon Web Services account IDs or Amazon Web Services
|
3579
|
+
# organization/organizational unit ARNs that are allowed to access to
|
3580
|
+
# access data managed by Lake Formation.
|
3581
|
+
#
|
3582
|
+
# If the `ShareRecipients` list includes valid values, then the resource
|
3583
|
+
# share is updated with the principals you want to have access to the
|
3584
|
+
# resources.
|
3585
|
+
#
|
3586
|
+
# If the `ShareRecipients` value is null, both the list of share
|
3587
|
+
# recipients and the resource share remain unchanged.
|
3588
|
+
#
|
3589
|
+
# If the `ShareRecipients` value is an empty list, then the existing
|
3590
|
+
# share recipients list will be cleared, and the resource share will be
|
3591
|
+
# deleted.
|
3592
|
+
#
|
3531
3593
|
# @option params [String] :application_status
|
3532
3594
|
# Allows to enable or disable the IAM Identity Center connection.
|
3533
3595
|
#
|
@@ -3542,6 +3604,11 @@ module Aws::LakeFormation
|
|
3542
3604
|
#
|
3543
3605
|
# resp = client.update_lake_formation_identity_center_configuration({
|
3544
3606
|
# catalog_id: "CatalogIdString",
|
3607
|
+
# share_recipients: [
|
3608
|
+
# {
|
3609
|
+
# data_lake_principal_identifier: "DataLakePrincipalString",
|
3610
|
+
# },
|
3611
|
+
# ],
|
3545
3612
|
# application_status: "ENABLED", # accepts ENABLED, DISABLED
|
3546
3613
|
# external_filtering: {
|
3547
3614
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
@@ -3708,7 +3775,7 @@ module Aws::LakeFormation
|
|
3708
3775
|
params: params,
|
3709
3776
|
config: config)
|
3710
3777
|
context[:gem_name] = 'aws-sdk-lakeformation'
|
3711
|
-
context[:gem_version] = '1.
|
3778
|
+
context[:gem_version] = '1.49.0'
|
3712
3779
|
Seahorse::Client::Request.new(handlers, context)
|
3713
3780
|
end
|
3714
3781
|
|
@@ -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
|
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
|
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 = []
|
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.
|
4
|
+
version: 1.49.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-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|