@aws-sdk/client-lakeformation 3.552.0 → 3.556.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.
package/dist-cjs/index.js CHANGED
@@ -860,7 +860,8 @@ var se_CreateLakeFormationIdentityCenterConfigurationCommand = /* @__PURE__ */ _
860
860
  (0, import_smithy_client.take)(input, {
861
861
  CatalogId: [],
862
862
  ExternalFiltering: (_) => (0, import_smithy_client._json)(_),
863
- InstanceArn: []
863
+ InstanceArn: [],
864
+ ShareRecipients: (_) => (0, import_smithy_client._json)(_)
864
865
  })
865
866
  );
866
867
  b.m("POST").h(headers).b(body);
@@ -1621,7 +1622,8 @@ var se_UpdateLakeFormationIdentityCenterConfigurationCommand = /* @__PURE__ */ _
1621
1622
  (0, import_smithy_client.take)(input, {
1622
1623
  ApplicationStatus: [],
1623
1624
  CatalogId: [],
1624
- ExternalFiltering: (_) => (0, import_smithy_client._json)(_)
1625
+ ExternalFiltering: (_) => (0, import_smithy_client._json)(_),
1626
+ ShareRecipients: (_) => (0, import_smithy_client._json)(_)
1625
1627
  })
1626
1628
  );
1627
1629
  b.m("POST").h(headers).b(body);
@@ -1899,7 +1901,9 @@ var de_DescribeLakeFormationIdentityCenterConfigurationCommand = /* @__PURE__ */
1899
1901
  ApplicationArn: import_smithy_client.expectString,
1900
1902
  CatalogId: import_smithy_client.expectString,
1901
1903
  ExternalFiltering: import_smithy_client._json,
1902
- InstanceArn: import_smithy_client.expectString
1904
+ InstanceArn: import_smithy_client.expectString,
1905
+ ResourceShare: import_smithy_client.expectString,
1906
+ ShareRecipients: import_smithy_client._json
1903
1907
  });
1904
1908
  Object.assign(contents, doc);
1905
1909
  return contents;
@@ -113,6 +113,7 @@ export const se_CreateLakeFormationIdentityCenterConfigurationCommand = async (i
113
113
  CatalogId: [],
114
114
  ExternalFiltering: (_) => _json(_),
115
115
  InstanceArn: [],
116
+ ShareRecipients: (_) => _json(_),
116
117
  }));
117
118
  b.m("POST").h(headers).b(body);
118
119
  return b.build();
@@ -790,6 +791,7 @@ export const se_UpdateLakeFormationIdentityCenterConfigurationCommand = async (i
790
791
  ApplicationStatus: [],
791
792
  CatalogId: [],
792
793
  ExternalFiltering: (_) => _json(_),
794
+ ShareRecipients: (_) => _json(_),
793
795
  }));
794
796
  b.m("POST").h(headers).b(body);
795
797
  return b.build();
@@ -1059,6 +1061,8 @@ export const de_DescribeLakeFormationIdentityCenterConfigurationCommand = async
1059
1061
  CatalogId: __expectString,
1060
1062
  ExternalFiltering: _json,
1061
1063
  InstanceArn: __expectString,
1064
+ ResourceShare: __expectString,
1065
+ ShareRecipients: _json,
1062
1066
  });
1063
1067
  Object.assign(contents, doc);
1064
1068
  return contents;
@@ -42,6 +42,11 @@ declare const CreateLakeFormationIdentityCenterConfigurationCommand_base: {
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * },
45
+ * ShareRecipients: [ // DataLakePrincipalList
46
+ * { // DataLakePrincipal
47
+ * DataLakePrincipalIdentifier: "STRING_VALUE",
48
+ * },
49
+ * ],
45
50
  * };
46
51
  * const command = new CreateLakeFormationIdentityCenterConfigurationCommand(input);
47
52
  * const response = await client.send(command);
@@ -48,6 +48,12 @@ declare const DescribeLakeFormationIdentityCenterConfigurationCommand_base: {
48
48
  * // "STRING_VALUE",
49
49
  * // ],
50
50
  * // },
51
+ * // ShareRecipients: [ // DataLakePrincipalList
52
+ * // { // DataLakePrincipal
53
+ * // DataLakePrincipalIdentifier: "STRING_VALUE",
54
+ * // },
55
+ * // ],
56
+ * // ResourceShare: "STRING_VALUE",
51
57
  * // };
52
58
  *
53
59
  * ```
@@ -35,6 +35,11 @@ declare const UpdateLakeFormationIdentityCenterConfigurationCommand_base: {
35
35
  * const client = new LakeFormationClient(config);
36
36
  * const input = { // UpdateLakeFormationIdentityCenterConfigurationRequest
37
37
  * CatalogId: "STRING_VALUE",
38
+ * ShareRecipients: [ // DataLakePrincipalList
39
+ * { // DataLakePrincipal
40
+ * DataLakePrincipalIdentifier: "STRING_VALUE",
41
+ * },
42
+ * ],
38
43
  * ApplicationStatus: "ENABLED" || "DISABLED",
39
44
  * ExternalFiltering: { // ExternalFilteringConfiguration
40
45
  * Status: "ENABLED" || "DISABLED", // required
@@ -950,13 +950,21 @@ export interface CreateLakeFormationIdentityCenterConfigurationRequest {
950
950
  * @public
951
951
  */
952
952
  ExternalFiltering?: ExternalFilteringConfiguration;
953
+ /**
954
+ * <p>A list of Amazon Web Services account IDs and/or Amazon Web Services organization/organizational unit ARNs
955
+ * that are allowed to access data managed by Lake Formation. </p>
956
+ * <p>If the <code>ShareRecipients</code> list includes valid values, a resource share is created with the principals you want to have access to the resources.</p>
957
+ * <p>If the <code>ShareRecipients</code> value is null or the list is empty, no resource share is created.</p>
958
+ * @public
959
+ */
960
+ ShareRecipients?: DataLakePrincipal[];
953
961
  }
954
962
  /**
955
963
  * @public
956
964
  */
957
965
  export interface CreateLakeFormationIdentityCenterConfigurationResponse {
958
966
  /**
959
- * <p>The Amazon Resource Name (ARN) of the integrated application.</p>
967
+ * <p>The Amazon Resource Name (ARN) of the Lake Formation application integrated with IAM Identity Center.</p>
960
968
  * @public
961
969
  */
962
970
  ApplicationArn?: string;
@@ -1204,7 +1212,7 @@ export interface DescribeLakeFormationIdentityCenterConfigurationResponse {
1204
1212
  */
1205
1213
  InstanceArn?: string;
1206
1214
  /**
1207
- * <p>The Amazon Resource Name (ARN) of the integrated application.</p>
1215
+ * <p>The Amazon Resource Name (ARN) of the Lake Formation application integrated with IAM Identity Center.</p>
1208
1216
  * @public
1209
1217
  */
1210
1218
  ApplicationArn?: string;
@@ -1213,6 +1221,19 @@ export interface DescribeLakeFormationIdentityCenterConfigurationResponse {
1213
1221
  * @public
1214
1222
  */
1215
1223
  ExternalFiltering?: ExternalFilteringConfiguration;
1224
+ /**
1225
+ * <p>A list of Amazon Web Services account IDs or Amazon Web Services organization/organizational unit ARNs that
1226
+ * are allowed to access data managed by Lake Formation. </p>
1227
+ * <p>If the <code>ShareRecipients</code> list includes valid values, a resource share is created with the principals you want to have access to the resources as the <code>ShareRecipients</code>.</p>
1228
+ * <p>If the <code>ShareRecipients</code> value is null or the list is empty, no resource share is created.</p>
1229
+ * @public
1230
+ */
1231
+ ShareRecipients?: DataLakePrincipal[];
1232
+ /**
1233
+ * <p>The Amazon Resource Name (ARN) of the RAM share.</p>
1234
+ * @public
1235
+ */
1236
+ ResourceShare?: string;
1216
1237
  }
1217
1238
  /**
1218
1239
  * @public
@@ -3141,6 +3162,17 @@ export interface UpdateLakeFormationIdentityCenterConfigurationRequest {
3141
3162
  * @public
3142
3163
  */
3143
3164
  CatalogId?: string;
3165
+ /**
3166
+ * <p>A list of Amazon Web Services account IDs or Amazon Web Services organization/organizational unit ARNs that
3167
+ * are allowed to access to access data managed by Lake Formation. </p>
3168
+ * <p>If the <code>ShareRecipients</code> list includes valid values, then the resource share is updated with the principals you want to have access to the resources.</p>
3169
+ * <p>If the <code>ShareRecipients</code> value is null, both the list of share recipients and
3170
+ * the resource share remain unchanged.</p>
3171
+ * <p>If the <code>ShareRecipients</code> value is an empty list, then the existing share
3172
+ * recipients list will be cleared, and the resource share will be deleted.</p>
3173
+ * @public
3174
+ */
3175
+ ShareRecipients?: DataLakePrincipal[];
3144
3176
  /**
3145
3177
  * <p>Allows to enable or disable the IAM Identity Center connection.</p>
3146
3178
  * @public
@@ -301,6 +301,7 @@ export interface CreateLakeFormationIdentityCenterConfigurationRequest {
301
301
  CatalogId?: string;
302
302
  InstanceArn?: string;
303
303
  ExternalFiltering?: ExternalFilteringConfiguration;
304
+ ShareRecipients?: DataLakePrincipal[];
304
305
  }
305
306
  export interface CreateLakeFormationIdentityCenterConfigurationResponse {
306
307
  ApplicationArn?: string;
@@ -369,6 +370,8 @@ export interface DescribeLakeFormationIdentityCenterConfigurationResponse {
369
370
  InstanceArn?: string;
370
371
  ApplicationArn?: string;
371
372
  ExternalFiltering?: ExternalFilteringConfiguration;
373
+ ShareRecipients?: DataLakePrincipal[];
374
+ ResourceShare?: string;
372
375
  }
373
376
  export interface DescribeResourceRequest {
374
377
  ResourceArn: string | undefined;
@@ -899,6 +902,7 @@ export interface UpdateDataCellsFilterRequest {
899
902
  export interface UpdateDataCellsFilterResponse {}
900
903
  export interface UpdateLakeFormationIdentityCenterConfigurationRequest {
901
904
  CatalogId?: string;
905
+ ShareRecipients?: DataLakePrincipal[];
902
906
  ApplicationStatus?: ApplicationStatus;
903
907
  ExternalFiltering?: ExternalFilteringConfiguration;
904
908
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lakeformation",
3
3
  "description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
4
- "version": "3.552.0",
4
+ "version": "3.556.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-lakeformation",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.552.0",
24
- "@aws-sdk/core": "3.552.0",
25
- "@aws-sdk/credential-provider-node": "3.552.0",
23
+ "@aws-sdk/client-sts": "3.556.0",
24
+ "@aws-sdk/core": "3.556.0",
25
+ "@aws-sdk/credential-provider-node": "3.556.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",