@@ -40,7 +40,7 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
40
40
* { // MemberSpecification
41
41
* accountId: "STRING_VALUE", // required
42
42
* memberAbilities: [ // MemberAbilities // required
43
- * "STRING_VALUE ",
43
+ * "CAN_QUERY" || "CAN_RECEIVE_RESULTS ",
44
44
* ],
45
45
* displayName: "STRING_VALUE", // required
46
46
* paymentConfiguration: { // PaymentConfiguration
@@ -53,7 +53,7 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
53
53
* name: "STRING_VALUE", // required
54
54
* description: "STRING_VALUE", // required
55
55
* creatorMemberAbilities: [ // required
56
- * "STRING_VALUE ",
56
+ * "CAN_QUERY" || "CAN_RECEIVE_RESULTS ",
57
57
* ],
58
58
* creatorDisplayName: "STRING_VALUE", // required
59
59
* dataEncryptionMetadata: { // DataEncryptionMetadata
@@ -62,7 +62,7 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
62
62
* allowJoinsOnColumnsWithDifferentNames: true || false, // required
63
63
* preserveNulls: true || false, // required
64
64
* },
65
- * queryLogStatus: "STRING_VALUE ", // required
65
+ * queryLogStatus: "ENABLED" || "DISABLED ", // required
66
66
* tags: { // TagMap
67
67
* "<keys>": "STRING_VALUE",
68
68
* },
@@ -71,6 +71,7 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
71
71
* isResponsible: true || false, // required
72
72
* },
73
73
* },
74
+ * analyticsEngine: "SPARK" || "CLEAN_ROOMS_SQL",
74
75
* };
75
76
* const command = new CreateCollaborationCommand(input);
76
77
* const response = await client.send(command);
@@ -93,7 +94,8 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
93
94
* // allowJoinsOnColumnsWithDifferentNames: true || false, // required
94
95
* // preserveNulls: true || false, // required
95
96
* // },
96
- * // queryLogStatus: "STRING_VALUE", // required
97
+ * // queryLogStatus: "ENABLED" || "DISABLED", // required
98
+ * // analyticsEngine: "SPARK" || "CLEAN_ROOMS_SQL",
97
99
* // },
98
100
* // };
99
101
*
0 commit comments