@aws-sdk/client-cleanrooms 3.299.0 → 3.301.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.
Files changed (38) hide show
  1. package/dist-types/commands/BatchGetSchemaCommand.d.ts +6 -0
  2. package/dist-types/commands/CreateCollaborationCommand.d.ts +27 -0
  3. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +43 -0
  4. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +17 -0
  6. package/dist-types/commands/CreateMembershipCommand.d.ts +7 -0
  7. package/dist-types/commands/DeleteCollaborationCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +3 -0
  11. package/dist-types/commands/DeleteMemberCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteMembershipCommand.d.ts +3 -0
  13. package/dist-types/commands/GetCollaborationCommand.d.ts +3 -0
  14. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +4 -0
  15. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +4 -0
  16. package/dist-types/commands/GetConfiguredTableCommand.d.ts +3 -0
  17. package/dist-types/commands/GetMembershipCommand.d.ts +3 -0
  18. package/dist-types/commands/GetProtectedQueryCommand.d.ts +4 -0
  19. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +5 -0
  20. package/dist-types/commands/GetSchemaCommand.d.ts +4 -0
  21. package/dist-types/commands/ListCollaborationsCommand.d.ts +5 -0
  22. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +5 -0
  23. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +4 -0
  24. package/dist-types/commands/ListMembersCommand.d.ts +5 -0
  25. package/dist-types/commands/ListMembershipsCommand.d.ts +5 -0
  26. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +6 -0
  27. package/dist-types/commands/ListSchemasCommand.d.ts +6 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  29. package/dist-types/commands/StartProtectedQueryCommand.d.ts +16 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  32. package/dist-types/commands/UpdateCollaborationCommand.d.ts +5 -0
  33. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +43 -0
  34. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +6 -0
  35. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +5 -0
  36. package/dist-types/commands/UpdateMembershipCommand.d.ts +4 -0
  37. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +5 -0
  38. package/package.json +8 -8
@@ -26,6 +26,12 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
26
26
  * import { CleanRoomsClient, BatchGetSchemaCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, BatchGetSchemaCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // BatchGetSchemaInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * names: [ // TableAliasList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new BatchGetSchemaCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,33 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
26
26
  * import { CleanRoomsClient, CreateCollaborationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, CreateCollaborationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // CreateCollaborationInput
30
+ * members: [ // MemberList // required
31
+ * { // MemberSpecification
32
+ * accountId: "STRING_VALUE", // required
33
+ * memberAbilities: [ // MemberAbilities // required
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * displayName: "STRING_VALUE", // required
37
+ * },
38
+ * ],
39
+ * name: "STRING_VALUE", // required
40
+ * description: "STRING_VALUE", // required
41
+ * creatorMemberAbilities: [ // required
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * creatorDisplayName: "STRING_VALUE", // required
45
+ * dataEncryptionMetadata: { // DataEncryptionMetadata
46
+ * allowCleartext: true || false, // required
47
+ * allowDuplicates: true || false, // required
48
+ * allowJoinsOnColumnsWithDifferentNames: true || false, // required
49
+ * preserveNulls: true || false, // required
50
+ * },
51
+ * queryLogStatus: "STRING_VALUE", // required
52
+ * tags: { // TagMap
53
+ * "<keys>": "STRING_VALUE",
54
+ * },
55
+ * };
29
56
  * const command = new CreateCollaborationCommand(input);
30
57
  * const response = await client.send(command);
31
58
  * ```
@@ -27,6 +27,49 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
27
27
  * import { CleanRoomsClient, CreateConfiguredTableAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
28
28
  * // const { CleanRoomsClient, CreateConfiguredTableAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
29
29
  * const client = new CleanRoomsClient(config);
30
+ * const input = { // CreateConfiguredTableAnalysisRuleInput
31
+ * configuredTableIdentifier: "STRING_VALUE", // required
32
+ * analysisRuleType: "AGGREGATION" || "LIST", // required
33
+ * analysisRulePolicy: { // ConfiguredTableAnalysisRulePolicy Union: only one key present
34
+ * v1: { // ConfiguredTableAnalysisRulePolicyV1 Union: only one key present
35
+ * list: { // AnalysisRuleList
36
+ * joinColumns: [ // AnalysisRuleColumnList // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * listColumns: [ // required
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * },
43
+ * aggregation: { // AnalysisRuleAggregation
44
+ * aggregateColumns: [ // AggregateColumnList // required
45
+ * { // AggregateColumn
46
+ * columnNames: [ // AnalysisRuleColumnNameList // required
47
+ * "STRING_VALUE",
48
+ * ],
49
+ * function: "STRING_VALUE", // required
50
+ * },
51
+ * ],
52
+ * joinColumns: [ // required
53
+ * "STRING_VALUE",
54
+ * ],
55
+ * joinRequired: "STRING_VALUE",
56
+ * dimensionColumns: [ // required
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * scalarFunctions: [ // ScalarFunctionsList // required
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * outputConstraints: [ // AggregationConstraints // required
63
+ * { // AggregationConstraint
64
+ * columnName: "STRING_VALUE", // required
65
+ * minimum: Number("int"), // required
66
+ * type: "STRING_VALUE", // required
67
+ * },
68
+ * ],
69
+ * },
70
+ * },
71
+ * },
72
+ * };
30
73
  * const command = new CreateConfiguredTableAnalysisRuleCommand(input);
31
74
  * const response = await client.send(command);
32
75
  * ```
@@ -27,6 +27,16 @@ export interface CreateConfiguredTableAssociationCommandOutput extends CreateCon
27
27
  * import { CleanRoomsClient, CreateConfiguredTableAssociationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
28
28
  * // const { CleanRoomsClient, CreateConfiguredTableAssociationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
29
29
  * const client = new CleanRoomsClient(config);
30
+ * const input = { // CreateConfiguredTableAssociationInput
31
+ * name: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * membershipIdentifier: "STRING_VALUE", // required
34
+ * configuredTableIdentifier: "STRING_VALUE", // required
35
+ * roleArn: "STRING_VALUE", // required
36
+ * tags: { // TagMap
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
30
40
  * const command = new CreateConfiguredTableAssociationCommand(input);
31
41
  * const response = await client.send(command);
32
42
  * ```
@@ -26,6 +26,23 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
26
26
  * import { CleanRoomsClient, CreateConfiguredTableCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, CreateConfiguredTableCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // CreateConfiguredTableInput
30
+ * name: "STRING_VALUE", // required
31
+ * description: "STRING_VALUE",
32
+ * tableReference: { // TableReference Union: only one key present
33
+ * glue: { // GlueTableReference
34
+ * tableName: "STRING_VALUE", // required
35
+ * databaseName: "STRING_VALUE", // required
36
+ * },
37
+ * },
38
+ * allowedColumns: [ // AllowedColumnList // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * analysisMethod: "STRING_VALUE", // required
42
+ * tags: { // TagMap
43
+ * "<keys>": "STRING_VALUE",
44
+ * },
45
+ * };
29
46
  * const command = new CreateConfiguredTableCommand(input);
30
47
  * const response = await client.send(command);
31
48
  * ```
@@ -27,6 +27,13 @@ export interface CreateMembershipCommandOutput extends CreateMembershipOutput, _
27
27
  * import { CleanRoomsClient, CreateMembershipCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
28
28
  * // const { CleanRoomsClient, CreateMembershipCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
29
29
  * const client = new CleanRoomsClient(config);
30
+ * const input = { // CreateMembershipInput
31
+ * collaborationIdentifier: "STRING_VALUE", // required
32
+ * queryLogStatus: "STRING_VALUE", // required
33
+ * tags: { // TagMap
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
30
37
  * const command = new CreateMembershipCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -26,6 +26,9 @@ export interface DeleteCollaborationCommandOutput extends DeleteCollaborationOut
26
26
  * import { CleanRoomsClient, DeleteCollaborationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, DeleteCollaborationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // DeleteCollaborationInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteCollaborationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface DeleteConfiguredTableAnalysisRuleCommandOutput extends DeleteCo
26
26
  * import { CleanRoomsClient, DeleteConfiguredTableAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, DeleteConfiguredTableAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // DeleteConfiguredTableAnalysisRuleInput
30
+ * configuredTableIdentifier: "STRING_VALUE", // required
31
+ * analysisRuleType: "AGGREGATION" || "LIST", // required
32
+ * };
29
33
  * const command = new DeleteConfiguredTableAnalysisRuleCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DeleteConfiguredTableAssociationCommandOutput extends DeleteCon
26
26
  * import { CleanRoomsClient, DeleteConfiguredTableAssociationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, DeleteConfiguredTableAssociationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // DeleteConfiguredTableAssociationInput
30
+ * configuredTableAssociationIdentifier: "STRING_VALUE", // required
31
+ * membershipIdentifier: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteConfiguredTableAssociationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteConfiguredTableCommandOutput extends DeleteConfiguredTabl
26
26
  * import { CleanRoomsClient, DeleteConfiguredTableCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, DeleteConfiguredTableCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // DeleteConfiguredTableInput
30
+ * configuredTableIdentifier: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteConfiguredTableCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -28,6 +28,10 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
28
28
  * import { CleanRoomsClient, DeleteMemberCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
29
29
  * // const { CleanRoomsClient, DeleteMemberCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
30
30
  * const client = new CleanRoomsClient(config);
31
+ * const input = { // DeleteMemberInput
32
+ * collaborationIdentifier: "STRING_VALUE", // required
33
+ * accountId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new DeleteMemberCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,9 @@ export interface DeleteMembershipCommandOutput extends DeleteMembershipOutput, _
26
26
  * import { CleanRoomsClient, DeleteMembershipCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, DeleteMembershipCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // DeleteMembershipInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteMembershipCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetCollaborationCommandOutput extends GetCollaborationOutput, _
26
26
  * import { CleanRoomsClient, GetCollaborationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetCollaborationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetCollaborationInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetCollaborationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface GetConfiguredTableAnalysisRuleCommandOutput extends GetConfigur
26
26
  * import { CleanRoomsClient, GetConfiguredTableAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetConfiguredTableAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetConfiguredTableAnalysisRuleInput
30
+ * configuredTableIdentifier: "STRING_VALUE", // required
31
+ * analysisRuleType: "AGGREGATION" || "LIST", // required
32
+ * };
29
33
  * const command = new GetConfiguredTableAnalysisRuleCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface GetConfiguredTableAssociationCommandOutput extends GetConfigure
26
26
  * import { CleanRoomsClient, GetConfiguredTableAssociationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetConfiguredTableAssociationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetConfiguredTableAssociationInput
30
+ * configuredTableAssociationIdentifier: "STRING_VALUE", // required
31
+ * membershipIdentifier: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetConfiguredTableAssociationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetConfiguredTableCommandOutput extends GetConfiguredTableOutpu
26
26
  * import { CleanRoomsClient, GetConfiguredTableCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetConfiguredTableCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetConfiguredTableInput
30
+ * configuredTableIdentifier: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetConfiguredTableCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface GetMembershipCommandOutput extends GetMembershipOutput, __Metad
26
26
  * import { CleanRoomsClient, GetMembershipCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetMembershipCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetMembershipInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetMembershipCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ export interface GetProtectedQueryCommandOutput extends GetProtectedQueryOutput,
26
26
  * import { CleanRoomsClient, GetProtectedQueryCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetProtectedQueryCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetProtectedQueryInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * protectedQueryIdentifier: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetProtectedQueryCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul
26
26
  * import { CleanRoomsClient, GetSchemaAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetSchemaAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetSchemaAnalysisRuleInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * name: "STRING_VALUE", // required
32
+ * type: "AGGREGATION" || "LIST", // required
33
+ * };
29
34
  * const command = new GetSchemaAnalysisRuleCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare
26
26
  * import { CleanRoomsClient, GetSchemaCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, GetSchemaCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // GetSchemaInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * name: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new GetSchemaCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListCollaborationsCommandOutput extends ListCollaborationsOutpu
26
26
  * import { CleanRoomsClient, ListCollaborationsCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListCollaborationsCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListCollaborationsInput
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"),
32
+ * memberStatus: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListCollaborationsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface ListConfiguredTableAssociationsCommandOutput extends ListConfig
26
26
  * import { CleanRoomsClient, ListConfiguredTableAssociationsCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListConfiguredTableAssociationsCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListConfiguredTableAssociationsInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListConfiguredTableAssociationsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesO
26
26
  * import { CleanRoomsClient, ListConfiguredTablesCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListConfiguredTablesCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListConfiguredTablesInput
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListConfiguredTablesCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
26
26
  * import { CleanRoomsClient, ListMembersCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListMembersCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListMembersInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListMembersCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __M
26
26
  * import { CleanRoomsClient, ListMembershipsCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListMembershipsCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListMembershipsInput
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"),
32
+ * status: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListMembershipsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesO
26
26
  * import { CleanRoomsClient, ListProtectedQueriesCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListProtectedQueriesCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListProtectedQueriesInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * status: "STRING_VALUE",
32
+ * nextToken: "STRING_VALUE",
33
+ * maxResults: Number("int"),
34
+ * };
29
35
  * const command = new ListProtectedQueriesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB
26
26
  * import { CleanRoomsClient, ListSchemasCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListSchemasCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListSchemasInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * schemaType: "STRING_VALUE",
32
+ * nextToken: "STRING_VALUE",
33
+ * maxResults: Number("int"),
34
+ * };
29
35
  * const command = new ListSchemasCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { CleanRoomsClient, ListTagsForResourceCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // ListTagsForResourceInput
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,22 @@ export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOut
26
26
  * import { CleanRoomsClient, StartProtectedQueryCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, StartProtectedQueryCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // StartProtectedQueryInput
30
+ * type: "STRING_VALUE", // required
31
+ * membershipIdentifier: "STRING_VALUE", // required
32
+ * sqlParameters: { // ProtectedQuerySQLParameters
33
+ * queryString: "STRING_VALUE", // required
34
+ * },
35
+ * resultConfiguration: { // ProtectedQueryResultConfiguration
36
+ * outputConfiguration: { // ProtectedQueryOutputConfiguration Union: only one key present
37
+ * s3: { // ProtectedQueryS3OutputConfiguration
38
+ * resultFormat: "STRING_VALUE", // required
39
+ * bucket: "STRING_VALUE", // required
40
+ * keyPrefix: "STRING_VALUE",
41
+ * },
42
+ * },
43
+ * },
44
+ * };
29
45
  * const command = new StartProtectedQueryCommand(input);
30
46
  * const response = await client.send(command);
31
47
  * ```
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
26
26
  * import { CleanRoomsClient, TagResourceCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, TagResourceCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // TagResourceInput
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tags: { // TagMap // required
32
+ * "<keys>": "STRING_VALUE",
33
+ * },
34
+ * };
29
35
  * const command = new TagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { CleanRoomsClient, UntagResourceCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UntagResourceCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UntagResourceInput
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // TagKeys // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,11 @@ export interface UpdateCollaborationCommandOutput extends UpdateCollaborationOut
26
26
  * import { CleanRoomsClient, UpdateCollaborationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UpdateCollaborationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UpdateCollaborationInput
30
+ * collaborationIdentifier: "STRING_VALUE", // required
31
+ * name: "STRING_VALUE",
32
+ * description: "STRING_VALUE",
33
+ * };
29
34
  * const command = new UpdateCollaborationCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,49 @@ export interface UpdateConfiguredTableAnalysisRuleCommandOutput extends UpdateCo
26
26
  * import { CleanRoomsClient, UpdateConfiguredTableAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UpdateConfiguredTableAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UpdateConfiguredTableAnalysisRuleInput
30
+ * configuredTableIdentifier: "STRING_VALUE", // required
31
+ * analysisRuleType: "AGGREGATION" || "LIST", // required
32
+ * analysisRulePolicy: { // ConfiguredTableAnalysisRulePolicy Union: only one key present
33
+ * v1: { // ConfiguredTableAnalysisRulePolicyV1 Union: only one key present
34
+ * list: { // AnalysisRuleList
35
+ * joinColumns: [ // AnalysisRuleColumnList // required
36
+ * "STRING_VALUE",
37
+ * ],
38
+ * listColumns: [ // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * },
42
+ * aggregation: { // AnalysisRuleAggregation
43
+ * aggregateColumns: [ // AggregateColumnList // required
44
+ * { // AggregateColumn
45
+ * columnNames: [ // AnalysisRuleColumnNameList // required
46
+ * "STRING_VALUE",
47
+ * ],
48
+ * function: "STRING_VALUE", // required
49
+ * },
50
+ * ],
51
+ * joinColumns: [ // required
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * joinRequired: "STRING_VALUE",
55
+ * dimensionColumns: [ // required
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * scalarFunctions: [ // ScalarFunctionsList // required
59
+ * "STRING_VALUE",
60
+ * ],
61
+ * outputConstraints: [ // AggregationConstraints // required
62
+ * { // AggregationConstraint
63
+ * columnName: "STRING_VALUE", // required
64
+ * minimum: Number("int"), // required
65
+ * type: "STRING_VALUE", // required
66
+ * },
67
+ * ],
68
+ * },
69
+ * },
70
+ * },
71
+ * };
29
72
  * const command = new UpdateConfiguredTableAnalysisRuleCommand(input);
30
73
  * const response = await client.send(command);
31
74
  * ```
@@ -26,6 +26,12 @@ export interface UpdateConfiguredTableAssociationCommandOutput extends UpdateCon
26
26
  * import { CleanRoomsClient, UpdateConfiguredTableAssociationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UpdateConfiguredTableAssociationCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UpdateConfiguredTableAssociationInput
30
+ * configuredTableAssociationIdentifier: "STRING_VALUE", // required
31
+ * membershipIdentifier: "STRING_VALUE", // required
32
+ * description: "STRING_VALUE",
33
+ * roleArn: "STRING_VALUE",
34
+ * };
29
35
  * const command = new UpdateConfiguredTableAssociationCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,11 @@ export interface UpdateConfiguredTableCommandOutput extends UpdateConfiguredTabl
26
26
  * import { CleanRoomsClient, UpdateConfiguredTableCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UpdateConfiguredTableCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UpdateConfiguredTableInput
30
+ * configuredTableIdentifier: "STRING_VALUE", // required
31
+ * name: "STRING_VALUE",
32
+ * description: "STRING_VALUE",
33
+ * };
29
34
  * const command = new UpdateConfiguredTableCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface UpdateMembershipCommandOutput extends UpdateMembershipOutput, _
26
26
  * import { CleanRoomsClient, UpdateMembershipCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UpdateMembershipCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UpdateMembershipInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * queryLogStatus: "STRING_VALUE",
32
+ * };
29
33
  * const command = new UpdateMembershipCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface UpdateProtectedQueryCommandOutput extends UpdateProtectedQueryO
26
26
  * import { CleanRoomsClient, UpdateProtectedQueryCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
27
27
  * // const { CleanRoomsClient, UpdateProtectedQueryCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
28
28
  * const client = new CleanRoomsClient(config);
29
+ * const input = { // UpdateProtectedQueryInput
30
+ * membershipIdentifier: "STRING_VALUE", // required
31
+ * protectedQueryIdentifier: "STRING_VALUE", // required
32
+ * targetStatus: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new UpdateProtectedQueryCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
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.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },