@aws-sdk/client-cleanrooms 3.777.0 → 3.780.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
|
@@ -921,6 +921,7 @@ export const se_UpdateCollaborationCommand = async (input, context) => {
|
|
|
921
921
|
b.p("collaborationIdentifier", () => input.collaborationIdentifier, "{collaborationIdentifier}", false);
|
|
922
922
|
let body;
|
|
923
923
|
body = JSON.stringify(take(input, {
|
|
924
|
+
analyticsEngine: [],
|
|
924
925
|
description: [],
|
|
925
926
|
name: [],
|
|
926
927
|
}));
|
|
@@ -38,6 +38,7 @@ declare const UpdateCollaborationCommand_base: {
|
|
|
38
38
|
* collaborationIdentifier: "STRING_VALUE", // required
|
|
39
39
|
* name: "STRING_VALUE",
|
|
40
40
|
* description: "STRING_VALUE",
|
|
41
|
+
* analyticsEngine: "SPARK" || "CLEAN_ROOMS_SQL",
|
|
41
42
|
* };
|
|
42
43
|
* const command = new UpdateCollaborationCommand(input);
|
|
43
44
|
* const response = await client.send(command);
|
|
@@ -4108,6 +4108,11 @@ export interface UpdateCollaborationInput {
|
|
|
4108
4108
|
* @public
|
|
4109
4109
|
*/
|
|
4110
4110
|
description?: string | undefined;
|
|
4111
|
+
/**
|
|
4112
|
+
* <p>The analytics engine.</p>
|
|
4113
|
+
* @public
|
|
4114
|
+
*/
|
|
4115
|
+
analyticsEngine?: AnalyticsEngine | undefined;
|
|
4111
4116
|
}
|
|
4112
4117
|
/**
|
|
4113
4118
|
* @public
|
|
@@ -1331,6 +1331,7 @@ export interface UpdateCollaborationInput {
|
|
|
1331
1331
|
collaborationIdentifier: string | undefined;
|
|
1332
1332
|
name?: string | undefined;
|
|
1333
1333
|
description?: string | undefined;
|
|
1334
|
+
analyticsEngine?: AnalyticsEngine | undefined;
|
|
1334
1335
|
}
|
|
1335
1336
|
export interface UpdateCollaborationOutput {
|
|
1336
1337
|
collaboration: Collaboration | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanrooms",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.780.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-cleanrooms",
|