aws-sdk-lakeformation 1.79.0 → 1.80.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lakeformation/client.rb +62 -10
- data/lib/aws-sdk-lakeformation/client_api.rb +28 -0
- data/lib/aws-sdk-lakeformation/types.rb +88 -4
- data/lib/aws-sdk-lakeformation.rb +1 -1
- data/sig/client.rbs +23 -0
- data/sig/types.rbs +30 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 56ad4aeb9208aef17ae89d01139f89d3fe675c66112bbf24a5196ef97b0870c0
|
|
4
|
+
data.tar.gz: d5d246c738ea05fc43582d7ddc6205ea935ecff43186af51b63a8f36fa4ad062
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59fc71230765c5851c4bb8178327c03f50b89fe24716112792eb63ded0a6903844f102f5218f054c4185e7abb530e638a665a84606dffdb3d6737e03abbb2760
|
|
7
|
+
data.tar.gz: dba76e8291ad8a508cab1aa17635f438a1a6d5e18de0a2e0999d3130b991b0770b0e02035b9467636e6723facfc32854118af73c0cb8d2387e95d5b1152efc0d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.80.0 (2025-11-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added ServiceIntegrations as a request parameter for CreateLakeFormationIdentityCenterConfigurationRequest and UpdateLakeFormationIdentityCenterConfigurationRequest and response parameter for DescribeLakeFormationIdentityCenterConfigurationResponse
|
|
8
|
+
|
|
4
9
|
1.79.0 (2025-10-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
|
@@ -595,7 +595,17 @@ module Aws::LakeFormation
|
|
|
595
595
|
# virtual API `GetDataAccess`. Therefore, all SAML roles that can be
|
|
596
596
|
# assumed via `AssumeDecoratedRoleWithSAML` must at a minimum include
|
|
597
597
|
# `lakeformation:GetDataAccess` in their role policies. A typical IAM
|
|
598
|
-
# policy attached to such a role would
|
|
598
|
+
# policy attached to such a role would include the following actions:
|
|
599
|
+
#
|
|
600
|
+
# * glue:*Database*
|
|
601
|
+
#
|
|
602
|
+
# * glue:*Table*
|
|
603
|
+
#
|
|
604
|
+
# * glue:*Partition*
|
|
605
|
+
#
|
|
606
|
+
# * glue:*UserDefinedFunction*
|
|
607
|
+
#
|
|
608
|
+
# * lakeformation:GetDataAccess
|
|
599
609
|
#
|
|
600
610
|
# @option params [required, String] :saml_assertion
|
|
601
611
|
# A SAML assertion consisting of an assertion statement for the user who
|
|
@@ -1144,6 +1154,10 @@ module Aws::LakeFormation
|
|
|
1144
1154
|
# If the `ShareRecipients` value is null or the list is empty, no
|
|
1145
1155
|
# resource share is created.
|
|
1146
1156
|
#
|
|
1157
|
+
# @option params [Array<Types::ServiceIntegrationUnion>] :service_integrations
|
|
1158
|
+
# A list of service integrations for enabling trusted identity
|
|
1159
|
+
# propagation with external services such as Redshift.
|
|
1160
|
+
#
|
|
1147
1161
|
# @return [Types::CreateLakeFormationIdentityCenterConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1148
1162
|
#
|
|
1149
1163
|
# * {Types::CreateLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
|
@@ -1162,6 +1176,17 @@ module Aws::LakeFormation
|
|
|
1162
1176
|
# data_lake_principal_identifier: "DataLakePrincipalString",
|
|
1163
1177
|
# },
|
|
1164
1178
|
# ],
|
|
1179
|
+
# service_integrations: [
|
|
1180
|
+
# {
|
|
1181
|
+
# redshift: [
|
|
1182
|
+
# {
|
|
1183
|
+
# redshift_connect: {
|
|
1184
|
+
# authorization: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
1185
|
+
# },
|
|
1186
|
+
# },
|
|
1187
|
+
# ],
|
|
1188
|
+
# },
|
|
1189
|
+
# ],
|
|
1165
1190
|
# })
|
|
1166
1191
|
#
|
|
1167
1192
|
# @example Response structure
|
|
@@ -1302,12 +1327,13 @@ module Aws::LakeFormation
|
|
|
1302
1327
|
req.send_request(options)
|
|
1303
1328
|
end
|
|
1304
1329
|
|
|
1305
|
-
# Deletes
|
|
1306
|
-
# tag key
|
|
1307
|
-
#
|
|
1308
|
-
#
|
|
1309
|
-
#
|
|
1310
|
-
#
|
|
1330
|
+
# Deletes an LF-tag by its key name. The operation fails if the
|
|
1331
|
+
# specified tag key doesn't exist. When you delete an LF-Tag:
|
|
1332
|
+
#
|
|
1333
|
+
# * The associated LF-Tag policy becomes invalid.
|
|
1334
|
+
#
|
|
1335
|
+
# * Resources that had this tag assigned will no longer have the tag
|
|
1336
|
+
# policy applied to them.
|
|
1311
1337
|
#
|
|
1312
1338
|
# @option params [String] :catalog_id
|
|
1313
1339
|
# The identifier for the Data Catalog. By default, the account ID. The
|
|
@@ -1581,6 +1607,7 @@ module Aws::LakeFormation
|
|
|
1581
1607
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#application_arn #application_arn} => String
|
|
1582
1608
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#external_filtering #external_filtering} => Types::ExternalFilteringConfiguration
|
|
1583
1609
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#share_recipients #share_recipients} => Array<Types::DataLakePrincipal>
|
|
1610
|
+
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#service_integrations #service_integrations} => Array<Types::ServiceIntegrationUnion>
|
|
1584
1611
|
# * {Types::DescribeLakeFormationIdentityCenterConfigurationResponse#resource_share #resource_share} => String
|
|
1585
1612
|
#
|
|
1586
1613
|
# @example Request syntax with placeholder values
|
|
@@ -1599,6 +1626,9 @@ module Aws::LakeFormation
|
|
|
1599
1626
|
# resp.external_filtering.authorized_targets[0] #=> String
|
|
1600
1627
|
# resp.share_recipients #=> Array
|
|
1601
1628
|
# resp.share_recipients[0].data_lake_principal_identifier #=> String
|
|
1629
|
+
# resp.service_integrations #=> Array
|
|
1630
|
+
# resp.service_integrations[0].redshift #=> Array
|
|
1631
|
+
# resp.service_integrations[0].redshift[0].redshift_connect.authorization #=> String, one of "ENABLED", "DISABLED"
|
|
1602
1632
|
# resp.resource_share #=> String
|
|
1603
1633
|
#
|
|
1604
1634
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/DescribeLakeFormationIdentityCenterConfiguration AWS API Documentation
|
|
@@ -2943,7 +2973,9 @@ module Aws::LakeFormation
|
|
|
2943
2973
|
# for ALTER.
|
|
2944
2974
|
#
|
|
2945
2975
|
# This operation returns only those permissions that have been
|
|
2946
|
-
# explicitly granted.
|
|
2976
|
+
# explicitly granted. If both `Principal` and `Resource` parameters are
|
|
2977
|
+
# provided, the response returns effective permissions rather than the
|
|
2978
|
+
# explicitly granted permissions.
|
|
2947
2979
|
#
|
|
2948
2980
|
# For information about permissions, see [Security and Access Control to
|
|
2949
2981
|
# Metadata and Data][1].
|
|
@@ -2979,7 +3011,12 @@ module Aws::LakeFormation
|
|
|
2979
3011
|
# The maximum number of results to return.
|
|
2980
3012
|
#
|
|
2981
3013
|
# @option params [String] :include_related
|
|
2982
|
-
# Indicates that related permissions should be included in the results
|
|
3014
|
+
# Indicates that related permissions should be included in the results
|
|
3015
|
+
# when listing permissions on a table resource.
|
|
3016
|
+
#
|
|
3017
|
+
# Set the field to `TRUE` to show the cell filters on a table resource.
|
|
3018
|
+
# Default is `FALSE`. The Principal parameter must not be specified when
|
|
3019
|
+
# requesting cell filter information.
|
|
2983
3020
|
#
|
|
2984
3021
|
# @return [Types::ListPermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2985
3022
|
#
|
|
@@ -4026,6 +4063,10 @@ module Aws::LakeFormation
|
|
|
4026
4063
|
# share recipients list will be cleared, and the resource share will be
|
|
4027
4064
|
# deleted.
|
|
4028
4065
|
#
|
|
4066
|
+
# @option params [Array<Types::ServiceIntegrationUnion>] :service_integrations
|
|
4067
|
+
# A list of service integrations for enabling trusted identity
|
|
4068
|
+
# propagation with external services such as Redshift.
|
|
4069
|
+
#
|
|
4029
4070
|
# @option params [String] :application_status
|
|
4030
4071
|
# Allows to enable or disable the IAM Identity Center connection.
|
|
4031
4072
|
#
|
|
@@ -4045,6 +4086,17 @@ module Aws::LakeFormation
|
|
|
4045
4086
|
# data_lake_principal_identifier: "DataLakePrincipalString",
|
|
4046
4087
|
# },
|
|
4047
4088
|
# ],
|
|
4089
|
+
# service_integrations: [
|
|
4090
|
+
# {
|
|
4091
|
+
# redshift: [
|
|
4092
|
+
# {
|
|
4093
|
+
# redshift_connect: {
|
|
4094
|
+
# authorization: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
4095
|
+
# },
|
|
4096
|
+
# },
|
|
4097
|
+
# ],
|
|
4098
|
+
# },
|
|
4099
|
+
# ],
|
|
4048
4100
|
# application_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
4049
4101
|
# external_filtering: {
|
|
4050
4102
|
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
|
@@ -4216,7 +4268,7 @@ module Aws::LakeFormation
|
|
|
4216
4268
|
tracer: tracer
|
|
4217
4269
|
)
|
|
4218
4270
|
context[:gem_name] = 'aws-sdk-lakeformation'
|
|
4219
|
-
context[:gem_version] = '1.
|
|
4271
|
+
context[:gem_version] = '1.80.0'
|
|
4220
4272
|
Seahorse::Client::Request.new(handlers, context)
|
|
4221
4273
|
end
|
|
4222
4274
|
|
|
@@ -233,6 +233,9 @@ module Aws::LakeFormation
|
|
|
233
233
|
QuerySessionContext = Shapes::StructureShape.new(name: 'QuerySessionContext')
|
|
234
234
|
QueryStateString = Shapes::StringShape.new(name: 'QueryStateString')
|
|
235
235
|
RAMResourceShareArn = Shapes::StringShape.new(name: 'RAMResourceShareArn')
|
|
236
|
+
RedshiftConnect = Shapes::StructureShape.new(name: 'RedshiftConnect')
|
|
237
|
+
RedshiftScopeUnion = Shapes::UnionShape.new(name: 'RedshiftScopeUnion')
|
|
238
|
+
RedshiftServiceIntegrations = Shapes::ListShape.new(name: 'RedshiftServiceIntegrations')
|
|
236
239
|
RegisterResourceRequest = Shapes::StructureShape.new(name: 'RegisterResourceRequest')
|
|
237
240
|
RegisterResourceResponse = Shapes::StructureShape.new(name: 'RegisterResourceResponse')
|
|
238
241
|
RemoveLFTagsFromResourceRequest = Shapes::StructureShape.new(name: 'RemoveLFTagsFromResourceRequest')
|
|
@@ -260,6 +263,9 @@ module Aws::LakeFormation
|
|
|
260
263
|
SearchTablesByLFTagsRequest = Shapes::StructureShape.new(name: 'SearchTablesByLFTagsRequest')
|
|
261
264
|
SearchTablesByLFTagsResponse = Shapes::StructureShape.new(name: 'SearchTablesByLFTagsResponse')
|
|
262
265
|
SecretAccessKeyString = Shapes::StringShape.new(name: 'SecretAccessKeyString')
|
|
266
|
+
ServiceAuthorization = Shapes::StringShape.new(name: 'ServiceAuthorization')
|
|
267
|
+
ServiceIntegrationList = Shapes::ListShape.new(name: 'ServiceIntegrationList')
|
|
268
|
+
ServiceIntegrationUnion = Shapes::UnionShape.new(name: 'ServiceIntegrationUnion')
|
|
263
269
|
SessionTokenString = Shapes::StringShape.new(name: 'SessionTokenString')
|
|
264
270
|
StartQueryPlanningRequest = Shapes::StructureShape.new(name: 'StartQueryPlanningRequest')
|
|
265
271
|
StartQueryPlanningResponse = Shapes::StructureShape.new(name: 'StartQueryPlanningResponse')
|
|
@@ -456,6 +462,7 @@ module Aws::LakeFormation
|
|
|
456
462
|
CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:instance_arn, Shapes::ShapeRef.new(shape: IdentityCenterInstanceArn, location_name: "InstanceArn"))
|
|
457
463
|
CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
|
|
458
464
|
CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:share_recipients, Shapes::ShapeRef.new(shape: DataLakePrincipalList, location_name: "ShareRecipients"))
|
|
465
|
+
CreateLakeFormationIdentityCenterConfigurationRequest.add_member(:service_integrations, Shapes::ShapeRef.new(shape: ServiceIntegrationList, location_name: "ServiceIntegrations"))
|
|
459
466
|
CreateLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::CreateLakeFormationIdentityCenterConfigurationRequest
|
|
460
467
|
|
|
461
468
|
CreateLakeFormationIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
|
@@ -572,6 +579,7 @@ module Aws::LakeFormation
|
|
|
572
579
|
DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:application_arn, Shapes::ShapeRef.new(shape: ApplicationArn, location_name: "ApplicationArn"))
|
|
573
580
|
DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
|
|
574
581
|
DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:share_recipients, Shapes::ShapeRef.new(shape: DataLakePrincipalList, location_name: "ShareRecipients"))
|
|
582
|
+
DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:service_integrations, Shapes::ShapeRef.new(shape: ServiceIntegrationList, location_name: "ServiceIntegrations"))
|
|
575
583
|
DescribeLakeFormationIdentityCenterConfigurationResponse.add_member(:resource_share, Shapes::ShapeRef.new(shape: RAMResourceShareArn, location_name: "ResourceShare"))
|
|
576
584
|
DescribeLakeFormationIdentityCenterConfigurationResponse.struct_class = Types::DescribeLakeFormationIdentityCenterConfigurationResponse
|
|
577
585
|
|
|
@@ -984,6 +992,17 @@ module Aws::LakeFormation
|
|
|
984
992
|
QuerySessionContext.add_member(:additional_context, Shapes::ShapeRef.new(shape: AdditionalContextMap, location_name: "AdditionalContext"))
|
|
985
993
|
QuerySessionContext.struct_class = Types::QuerySessionContext
|
|
986
994
|
|
|
995
|
+
RedshiftConnect.add_member(:authorization, Shapes::ShapeRef.new(shape: ServiceAuthorization, required: true, location_name: "Authorization"))
|
|
996
|
+
RedshiftConnect.struct_class = Types::RedshiftConnect
|
|
997
|
+
|
|
998
|
+
RedshiftScopeUnion.add_member(:redshift_connect, Shapes::ShapeRef.new(shape: RedshiftConnect, location_name: "RedshiftConnect"))
|
|
999
|
+
RedshiftScopeUnion.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1000
|
+
RedshiftScopeUnion.add_member_subclass(:redshift_connect, Types::RedshiftScopeUnion::RedshiftConnect)
|
|
1001
|
+
RedshiftScopeUnion.add_member_subclass(:unknown, Types::RedshiftScopeUnion::Unknown)
|
|
1002
|
+
RedshiftScopeUnion.struct_class = Types::RedshiftScopeUnion
|
|
1003
|
+
|
|
1004
|
+
RedshiftServiceIntegrations.member = Shapes::ShapeRef.new(shape: RedshiftScopeUnion)
|
|
1005
|
+
|
|
987
1006
|
RegisterResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArnString, required: true, location_name: "ResourceArn"))
|
|
988
1007
|
RegisterResourceRequest.add_member(:use_service_linked_role, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "UseServiceLinkedRole"))
|
|
989
1008
|
RegisterResourceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: IAMRoleArn, location_name: "RoleArn"))
|
|
@@ -1067,6 +1086,14 @@ module Aws::LakeFormation
|
|
|
1067
1086
|
SearchTablesByLFTagsResponse.add_member(:table_list, Shapes::ShapeRef.new(shape: TableLFTagsList, location_name: "TableList"))
|
|
1068
1087
|
SearchTablesByLFTagsResponse.struct_class = Types::SearchTablesByLFTagsResponse
|
|
1069
1088
|
|
|
1089
|
+
ServiceIntegrationList.member = Shapes::ShapeRef.new(shape: ServiceIntegrationUnion)
|
|
1090
|
+
|
|
1091
|
+
ServiceIntegrationUnion.add_member(:redshift, Shapes::ShapeRef.new(shape: RedshiftServiceIntegrations, location_name: "Redshift"))
|
|
1092
|
+
ServiceIntegrationUnion.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1093
|
+
ServiceIntegrationUnion.add_member_subclass(:redshift, Types::ServiceIntegrationUnion::Redshift)
|
|
1094
|
+
ServiceIntegrationUnion.add_member_subclass(:unknown, Types::ServiceIntegrationUnion::Unknown)
|
|
1095
|
+
ServiceIntegrationUnion.struct_class = Types::ServiceIntegrationUnion
|
|
1096
|
+
|
|
1070
1097
|
StartQueryPlanningRequest.add_member(:query_planning_context, Shapes::ShapeRef.new(shape: QueryPlanningContext, required: true, location_name: "QueryPlanningContext"))
|
|
1071
1098
|
StartQueryPlanningRequest.add_member(:query_string, Shapes::ShapeRef.new(shape: SyntheticStartQueryPlanningRequestQueryString, required: true, location_name: "QueryString"))
|
|
1072
1099
|
StartQueryPlanningRequest.struct_class = Types::StartQueryPlanningRequest
|
|
@@ -1181,6 +1208,7 @@ module Aws::LakeFormation
|
|
|
1181
1208
|
|
|
1182
1209
|
UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
|
1183
1210
|
UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:share_recipients, Shapes::ShapeRef.new(shape: DataLakePrincipalList, location_name: "ShareRecipients"))
|
|
1211
|
+
UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:service_integrations, Shapes::ShapeRef.new(shape: ServiceIntegrationList, location_name: "ServiceIntegrations"))
|
|
1184
1212
|
UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:application_status, Shapes::ShapeRef.new(shape: ApplicationStatus, location_name: "ApplicationStatus"))
|
|
1185
1213
|
UpdateLakeFormationIdentityCenterConfigurationRequest.add_member(:external_filtering, Shapes::ShapeRef.new(shape: ExternalFilteringConfiguration, location_name: "ExternalFiltering"))
|
|
1186
1214
|
UpdateLakeFormationIdentityCenterConfigurationRequest.struct_class = Types::UpdateLakeFormationIdentityCenterConfigurationRequest
|
|
@@ -558,13 +558,19 @@ module Aws::LakeFormation
|
|
|
558
558
|
# resource share is created.
|
|
559
559
|
# @return [Array<Types::DataLakePrincipal>]
|
|
560
560
|
#
|
|
561
|
+
# @!attribute [rw] service_integrations
|
|
562
|
+
# A list of service integrations for enabling trusted identity
|
|
563
|
+
# propagation with external services such as Redshift.
|
|
564
|
+
# @return [Array<Types::ServiceIntegrationUnion>]
|
|
565
|
+
#
|
|
561
566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/CreateLakeFormationIdentityCenterConfigurationRequest AWS API Documentation
|
|
562
567
|
#
|
|
563
568
|
class CreateLakeFormationIdentityCenterConfigurationRequest < Struct.new(
|
|
564
569
|
:catalog_id,
|
|
565
570
|
:instance_arn,
|
|
566
571
|
:external_filtering,
|
|
567
|
-
:share_recipients
|
|
572
|
+
:share_recipients,
|
|
573
|
+
:service_integrations)
|
|
568
574
|
SENSITIVE = []
|
|
569
575
|
include Aws::Structure
|
|
570
576
|
end
|
|
@@ -1139,6 +1145,11 @@ module Aws::LakeFormation
|
|
|
1139
1145
|
# resource share is created.
|
|
1140
1146
|
# @return [Array<Types::DataLakePrincipal>]
|
|
1141
1147
|
#
|
|
1148
|
+
# @!attribute [rw] service_integrations
|
|
1149
|
+
# A list of service integrations for enabling trusted identity
|
|
1150
|
+
# propagation with external services such as Redshift.
|
|
1151
|
+
# @return [Array<Types::ServiceIntegrationUnion>]
|
|
1152
|
+
#
|
|
1142
1153
|
# @!attribute [rw] resource_share
|
|
1143
1154
|
# The Amazon Resource Name (ARN) of the RAM share.
|
|
1144
1155
|
# @return [String]
|
|
@@ -1151,6 +1162,7 @@ module Aws::LakeFormation
|
|
|
1151
1162
|
:application_arn,
|
|
1152
1163
|
:external_filtering,
|
|
1153
1164
|
:share_recipients,
|
|
1165
|
+
:service_integrations,
|
|
1154
1166
|
:resource_share)
|
|
1155
1167
|
SENSITIVE = []
|
|
1156
1168
|
include Aws::Structure
|
|
@@ -2571,8 +2583,12 @@ module Aws::LakeFormation
|
|
|
2571
2583
|
# @return [Integer]
|
|
2572
2584
|
#
|
|
2573
2585
|
# @!attribute [rw] include_related
|
|
2574
|
-
# Indicates that related permissions should be included in the
|
|
2575
|
-
#
|
|
2586
|
+
# Indicates that related permissions should be included in the results
|
|
2587
|
+
# when listing permissions on a table resource.
|
|
2588
|
+
#
|
|
2589
|
+
# Set the field to `TRUE` to show the cell filters on a table
|
|
2590
|
+
# resource. Default is `FALSE`. The Principal parameter must not be
|
|
2591
|
+
# specified when requesting cell filter information.
|
|
2576
2592
|
# @return [String]
|
|
2577
2593
|
#
|
|
2578
2594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/ListPermissionsRequest AWS API Documentation
|
|
@@ -3028,6 +3044,45 @@ module Aws::LakeFormation
|
|
|
3028
3044
|
include Aws::Structure
|
|
3029
3045
|
end
|
|
3030
3046
|
|
|
3047
|
+
# Configuration for enabling trusted identity propagation with Redshift
|
|
3048
|
+
# Connect.
|
|
3049
|
+
#
|
|
3050
|
+
# @!attribute [rw] authorization
|
|
3051
|
+
# The authorization status for Redshift Connect. Valid values are
|
|
3052
|
+
# ENABLED or DISABLED.
|
|
3053
|
+
# @return [String]
|
|
3054
|
+
#
|
|
3055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/RedshiftConnect AWS API Documentation
|
|
3056
|
+
#
|
|
3057
|
+
class RedshiftConnect < Struct.new(
|
|
3058
|
+
:authorization)
|
|
3059
|
+
SENSITIVE = []
|
|
3060
|
+
include Aws::Structure
|
|
3061
|
+
end
|
|
3062
|
+
|
|
3063
|
+
# A union structure representing different Redshift integration scopes.
|
|
3064
|
+
#
|
|
3065
|
+
# @note RedshiftScopeUnion is a union - when making an API calls you must set exactly one of the members.
|
|
3066
|
+
#
|
|
3067
|
+
# @note RedshiftScopeUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RedshiftScopeUnion corresponding to the set member.
|
|
3068
|
+
#
|
|
3069
|
+
# @!attribute [rw] redshift_connect
|
|
3070
|
+
# Configuration for Redshift Connect integration.
|
|
3071
|
+
# @return [Types::RedshiftConnect]
|
|
3072
|
+
#
|
|
3073
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/RedshiftScopeUnion AWS API Documentation
|
|
3074
|
+
#
|
|
3075
|
+
class RedshiftScopeUnion < Struct.new(
|
|
3076
|
+
:redshift_connect,
|
|
3077
|
+
:unknown)
|
|
3078
|
+
SENSITIVE = []
|
|
3079
|
+
include Aws::Structure
|
|
3080
|
+
include Aws::Structure::Union
|
|
3081
|
+
|
|
3082
|
+
class RedshiftConnect < RedshiftScopeUnion; end
|
|
3083
|
+
class Unknown < RedshiftScopeUnion; end
|
|
3084
|
+
end
|
|
3085
|
+
|
|
3031
3086
|
# @!attribute [rw] resource_arn
|
|
3032
3087
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
|
3033
3088
|
# register.
|
|
@@ -3159,7 +3214,7 @@ module Aws::LakeFormation
|
|
|
3159
3214
|
# @return [Types::DataCellsFilterResource]
|
|
3160
3215
|
#
|
|
3161
3216
|
# @!attribute [rw] lf_tag
|
|
3162
|
-
# The LF-
|
|
3217
|
+
# The LF-Tag key and values attached to a resource.
|
|
3163
3218
|
# @return [Types::LFTagKeyResource]
|
|
3164
3219
|
#
|
|
3165
3220
|
# @!attribute [rw] lf_tag_policy
|
|
@@ -3431,6 +3486,29 @@ module Aws::LakeFormation
|
|
|
3431
3486
|
include Aws::Structure
|
|
3432
3487
|
end
|
|
3433
3488
|
|
|
3489
|
+
# A union structure representing different service integration types.
|
|
3490
|
+
#
|
|
3491
|
+
# @note ServiceIntegrationUnion is a union - when making an API calls you must set exactly one of the members.
|
|
3492
|
+
#
|
|
3493
|
+
# @note ServiceIntegrationUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ServiceIntegrationUnion corresponding to the set member.
|
|
3494
|
+
#
|
|
3495
|
+
# @!attribute [rw] redshift
|
|
3496
|
+
# Redshift service integration configuration.
|
|
3497
|
+
# @return [Array<Types::RedshiftScopeUnion>]
|
|
3498
|
+
#
|
|
3499
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/lakeformation-2017-03-31/ServiceIntegrationUnion AWS API Documentation
|
|
3500
|
+
#
|
|
3501
|
+
class ServiceIntegrationUnion < Struct.new(
|
|
3502
|
+
:redshift,
|
|
3503
|
+
:unknown)
|
|
3504
|
+
SENSITIVE = []
|
|
3505
|
+
include Aws::Structure
|
|
3506
|
+
include Aws::Structure::Union
|
|
3507
|
+
|
|
3508
|
+
class Redshift < ServiceIntegrationUnion; end
|
|
3509
|
+
class Unknown < ServiceIntegrationUnion; end
|
|
3510
|
+
end
|
|
3511
|
+
|
|
3434
3512
|
# @!attribute [rw] query_planning_context
|
|
3435
3513
|
# A structure containing information about the query plan.
|
|
3436
3514
|
# @return [Types::QueryPlanningContext]
|
|
@@ -3911,6 +3989,11 @@ module Aws::LakeFormation
|
|
|
3911
3989
|
# be deleted.
|
|
3912
3990
|
# @return [Array<Types::DataLakePrincipal>]
|
|
3913
3991
|
#
|
|
3992
|
+
# @!attribute [rw] service_integrations
|
|
3993
|
+
# A list of service integrations for enabling trusted identity
|
|
3994
|
+
# propagation with external services such as Redshift.
|
|
3995
|
+
# @return [Array<Types::ServiceIntegrationUnion>]
|
|
3996
|
+
#
|
|
3914
3997
|
# @!attribute [rw] application_status
|
|
3915
3998
|
# Allows to enable or disable the IAM Identity Center connection.
|
|
3916
3999
|
# @return [String]
|
|
@@ -3926,6 +4009,7 @@ module Aws::LakeFormation
|
|
|
3926
4009
|
class UpdateLakeFormationIdentityCenterConfigurationRequest < Struct.new(
|
|
3927
4010
|
:catalog_id,
|
|
3928
4011
|
:share_recipients,
|
|
4012
|
+
:service_integrations,
|
|
3929
4013
|
:application_status,
|
|
3930
4014
|
:external_filtering)
|
|
3931
4015
|
SENSITIVE = []
|
data/sig/client.rbs
CHANGED
|
@@ -409,6 +409,17 @@ module Aws
|
|
|
409
409
|
{
|
|
410
410
|
data_lake_principal_identifier: ::String?
|
|
411
411
|
},
|
|
412
|
+
],
|
|
413
|
+
?service_integrations: Array[
|
|
414
|
+
{
|
|
415
|
+
redshift: Array[
|
|
416
|
+
{
|
|
417
|
+
redshift_connect: {
|
|
418
|
+
authorization: ("ENABLED" | "DISABLED")
|
|
419
|
+
}?
|
|
420
|
+
},
|
|
421
|
+
]?
|
|
422
|
+
},
|
|
412
423
|
]
|
|
413
424
|
) -> _CreateLakeFormationIdentityCenterConfigurationResponseSuccess
|
|
414
425
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLakeFormationIdentityCenterConfigurationResponseSuccess
|
|
@@ -626,6 +637,7 @@ module Aws
|
|
|
626
637
|
def application_arn: () -> ::String
|
|
627
638
|
def external_filtering: () -> Types::ExternalFilteringConfiguration
|
|
628
639
|
def share_recipients: () -> ::Array[Types::DataLakePrincipal]
|
|
640
|
+
def service_integrations: () -> ::Array[Types::ServiceIntegrationUnion]
|
|
629
641
|
def resource_share: () -> ::String
|
|
630
642
|
end
|
|
631
643
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LakeFormation/Client.html#describe_lake_formation_identity_center_configuration-instance_method
|
|
@@ -1564,6 +1576,17 @@ module Aws
|
|
|
1564
1576
|
data_lake_principal_identifier: ::String?
|
|
1565
1577
|
},
|
|
1566
1578
|
],
|
|
1579
|
+
?service_integrations: Array[
|
|
1580
|
+
{
|
|
1581
|
+
redshift: Array[
|
|
1582
|
+
{
|
|
1583
|
+
redshift_connect: {
|
|
1584
|
+
authorization: ("ENABLED" | "DISABLED")
|
|
1585
|
+
}?
|
|
1586
|
+
},
|
|
1587
|
+
]?
|
|
1588
|
+
},
|
|
1589
|
+
],
|
|
1567
1590
|
?application_status: ("ENABLED" | "DISABLED"),
|
|
1568
1591
|
?external_filtering: {
|
|
1569
1592
|
status: ("ENABLED" | "DISABLED"),
|
data/sig/types.rbs
CHANGED
|
@@ -178,6 +178,7 @@ module Aws::LakeFormation
|
|
|
178
178
|
attr_accessor instance_arn: ::String
|
|
179
179
|
attr_accessor external_filtering: Types::ExternalFilteringConfiguration
|
|
180
180
|
attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
|
|
181
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationUnion]
|
|
181
182
|
SENSITIVE: []
|
|
182
183
|
end
|
|
183
184
|
|
|
@@ -332,6 +333,7 @@ module Aws::LakeFormation
|
|
|
332
333
|
attr_accessor application_arn: ::String
|
|
333
334
|
attr_accessor external_filtering: Types::ExternalFilteringConfiguration
|
|
334
335
|
attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
|
|
336
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationUnion]
|
|
335
337
|
attr_accessor resource_share: ::String
|
|
336
338
|
SENSITIVE: []
|
|
337
339
|
end
|
|
@@ -869,6 +871,22 @@ module Aws::LakeFormation
|
|
|
869
871
|
SENSITIVE: []
|
|
870
872
|
end
|
|
871
873
|
|
|
874
|
+
class RedshiftConnect
|
|
875
|
+
attr_accessor authorization: ("ENABLED" | "DISABLED")
|
|
876
|
+
SENSITIVE: []
|
|
877
|
+
end
|
|
878
|
+
|
|
879
|
+
class RedshiftScopeUnion
|
|
880
|
+
attr_accessor redshift_connect: Types::RedshiftConnect
|
|
881
|
+
attr_accessor unknown: untyped
|
|
882
|
+
SENSITIVE: []
|
|
883
|
+
|
|
884
|
+
class RedshiftConnect < RedshiftScopeUnion
|
|
885
|
+
end
|
|
886
|
+
class Unknown < RedshiftScopeUnion
|
|
887
|
+
end
|
|
888
|
+
end
|
|
889
|
+
|
|
872
890
|
class RegisterResourceRequest
|
|
873
891
|
attr_accessor resource_arn: ::String
|
|
874
892
|
attr_accessor use_service_linked_role: bool
|
|
@@ -974,6 +992,17 @@ module Aws::LakeFormation
|
|
|
974
992
|
SENSITIVE: []
|
|
975
993
|
end
|
|
976
994
|
|
|
995
|
+
class ServiceIntegrationUnion
|
|
996
|
+
attr_accessor redshift: ::Array[Types::RedshiftScopeUnion]
|
|
997
|
+
attr_accessor unknown: untyped
|
|
998
|
+
SENSITIVE: []
|
|
999
|
+
|
|
1000
|
+
class Redshift < ServiceIntegrationUnion
|
|
1001
|
+
end
|
|
1002
|
+
class Unknown < ServiceIntegrationUnion
|
|
1003
|
+
end
|
|
1004
|
+
end
|
|
1005
|
+
|
|
977
1006
|
class StartQueryPlanningRequest
|
|
978
1007
|
attr_accessor query_planning_context: Types::QueryPlanningContext
|
|
979
1008
|
attr_accessor query_string: ::String
|
|
@@ -1111,6 +1140,7 @@ module Aws::LakeFormation
|
|
|
1111
1140
|
class UpdateLakeFormationIdentityCenterConfigurationRequest
|
|
1112
1141
|
attr_accessor catalog_id: ::String
|
|
1113
1142
|
attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
|
|
1143
|
+
attr_accessor service_integrations: ::Array[Types::ServiceIntegrationUnion]
|
|
1114
1144
|
attr_accessor application_status: ("ENABLED" | "DISABLED")
|
|
1115
1145
|
attr_accessor external_filtering: Types::ExternalFilteringConfiguration
|
|
1116
1146
|
SENSITIVE: []
|