@aws-sdk/client-cleanrooms 3.300.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 +2 -2
  2. package/dist-types/commands/CreateCollaborationCommand.d.ts +6 -6
  3. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +12 -12
  4. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +2 -2
  5. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +5 -5
  6. package/dist-types/commands/CreateMembershipCommand.d.ts +2 -2
  7. package/dist-types/commands/DeleteCollaborationCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteMemberCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
  13. package/dist-types/commands/GetCollaborationCommand.d.ts +1 -1
  14. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +1 -1
  15. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +1 -1
  16. package/dist-types/commands/GetConfiguredTableCommand.d.ts +1 -1
  17. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  18. package/dist-types/commands/GetProtectedQueryCommand.d.ts +1 -1
  19. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +1 -1
  20. package/dist-types/commands/GetSchemaCommand.d.ts +1 -1
  21. package/dist-types/commands/ListCollaborationsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +1 -1
  24. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  25. package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +1 -1
  27. package/dist-types/commands/ListSchemasCommand.d.ts +1 -1
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  29. package/dist-types/commands/StartProtectedQueryCommand.d.ts +5 -5
  30. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  31. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  32. package/dist-types/commands/UpdateCollaborationCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +12 -12
  34. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateMembershipCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +1 -1
  38. package/package.json +3 -3
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // BatchGetSchemaInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
- * names: [ // required
31
+ * names: [ // TableAliasList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,11 +26,11 @@ 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 = {
30
- * members: [ // required
31
- * {
29
+ * const input = { // CreateCollaborationInput
30
+ * members: [ // MemberList // required
31
+ * { // MemberSpecification
32
32
  * accountId: "STRING_VALUE", // required
33
- * memberAbilities: [ // required
33
+ * memberAbilities: [ // MemberAbilities // required
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * displayName: "STRING_VALUE", // required
@@ -42,14 +42,14 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * creatorDisplayName: "STRING_VALUE", // required
45
- * dataEncryptionMetadata: {
45
+ * dataEncryptionMetadata: { // DataEncryptionMetadata
46
46
  * allowCleartext: true || false, // required
47
47
  * allowDuplicates: true || false, // required
48
48
  * allowJoinsOnColumnsWithDifferentNames: true || false, // required
49
49
  * preserveNulls: true || false, // required
50
50
  * },
51
51
  * queryLogStatus: "STRING_VALUE", // required
52
- * tags: {
52
+ * tags: { // TagMap
53
53
  * "<keys>": "STRING_VALUE",
54
54
  * },
55
55
  * };
@@ -27,23 +27,23 @@ 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 = {
30
+ * const input = { // CreateConfiguredTableAnalysisRuleInput
31
31
  * configuredTableIdentifier: "STRING_VALUE", // required
32
32
  * analysisRuleType: "AGGREGATION" || "LIST", // required
33
- * analysisRulePolicy: { // Union: only one key present
34
- * v1: { // Union: only one key present
35
- * list: {
36
- * joinColumns: [ // 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
37
  * "STRING_VALUE",
38
38
  * ],
39
39
  * listColumns: [ // required
40
40
  * "STRING_VALUE",
41
41
  * ],
42
42
  * },
43
- * aggregation: {
44
- * aggregateColumns: [ // required
45
- * {
46
- * columnNames: [ // required
43
+ * aggregation: { // AnalysisRuleAggregation
44
+ * aggregateColumns: [ // AggregateColumnList // required
45
+ * { // AggregateColumn
46
+ * columnNames: [ // AnalysisRuleColumnNameList // required
47
47
  * "STRING_VALUE",
48
48
  * ],
49
49
  * function: "STRING_VALUE", // required
@@ -56,11 +56,11 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
56
56
  * dimensionColumns: [ // required
57
57
  * "STRING_VALUE",
58
58
  * ],
59
- * scalarFunctions: [ // required
59
+ * scalarFunctions: [ // ScalarFunctionsList // required
60
60
  * "STRING_VALUE",
61
61
  * ],
62
- * outputConstraints: [ // required
63
- * {
62
+ * outputConstraints: [ // AggregationConstraints // required
63
+ * { // AggregationConstraint
64
64
  * columnName: "STRING_VALUE", // required
65
65
  * minimum: Number("int"), // required
66
66
  * type: "STRING_VALUE", // required
@@ -27,13 +27,13 @@ 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 = {
30
+ * const input = { // CreateConfiguredTableAssociationInput
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
33
  * membershipIdentifier: "STRING_VALUE", // required
34
34
  * configuredTableIdentifier: "STRING_VALUE", // required
35
35
  * roleArn: "STRING_VALUE", // required
36
- * tags: {
36
+ * tags: { // TagMap
37
37
  * "<keys>": "STRING_VALUE",
38
38
  * },
39
39
  * };
@@ -26,20 +26,20 @@ 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 = {
29
+ * const input = { // CreateConfiguredTableInput
30
30
  * name: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
- * tableReference: { // Union: only one key present
33
- * glue: {
32
+ * tableReference: { // TableReference Union: only one key present
33
+ * glue: { // GlueTableReference
34
34
  * tableName: "STRING_VALUE", // required
35
35
  * databaseName: "STRING_VALUE", // required
36
36
  * },
37
37
  * },
38
- * allowedColumns: [ // required
38
+ * allowedColumns: [ // AllowedColumnList // required
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * analysisMethod: "STRING_VALUE", // required
42
- * tags: {
42
+ * tags: { // TagMap
43
43
  * "<keys>": "STRING_VALUE",
44
44
  * },
45
45
  * };
@@ -27,10 +27,10 @@ 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 = {
30
+ * const input = { // CreateMembershipInput
31
31
  * collaborationIdentifier: "STRING_VALUE", // required
32
32
  * queryLogStatus: "STRING_VALUE", // required
33
- * tags: {
33
+ * tags: { // TagMap
34
34
  * "<keys>": "STRING_VALUE",
35
35
  * },
36
36
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteCollaborationInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteCollaborationCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteConfiguredTableAnalysisRuleInput
30
30
  * configuredTableIdentifier: "STRING_VALUE", // required
31
31
  * analysisRuleType: "AGGREGATION" || "LIST", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteConfiguredTableAssociationInput
30
30
  * configuredTableAssociationIdentifier: "STRING_VALUE", // required
31
31
  * membershipIdentifier: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteConfiguredTableInput
30
30
  * configuredTableIdentifier: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteConfiguredTableCommand(input);
@@ -28,7 +28,7 @@ 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 = {
31
+ * const input = { // DeleteMemberInput
32
32
  * collaborationIdentifier: "STRING_VALUE", // required
33
33
  * accountId: "STRING_VALUE", // required
34
34
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // DeleteMembershipInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteMembershipCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetCollaborationInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetCollaborationCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetConfiguredTableAnalysisRuleInput
30
30
  * configuredTableIdentifier: "STRING_VALUE", // required
31
31
  * analysisRuleType: "AGGREGATION" || "LIST", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetConfiguredTableAssociationInput
30
30
  * configuredTableAssociationIdentifier: "STRING_VALUE", // required
31
31
  * membershipIdentifier: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetConfiguredTableInput
30
30
  * configuredTableIdentifier: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetConfiguredTableCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetMembershipInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetMembershipCommand(input);
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetProtectedQueryInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * protectedQueryIdentifier: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetSchemaAnalysisRuleInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * type: "AGGREGATION" || "LIST", // required
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // GetSchemaInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListCollaborationsInput
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * memberStatus: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListConfiguredTableAssociationsInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListConfiguredTablesInput
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListMembersInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListMembershipsInput
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * status: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListProtectedQueriesInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * status: "STRING_VALUE",
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListSchemasInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * schemaType: "STRING_VALUE",
32
32
  * nextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // ListTagsForResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,15 +26,15 @@ 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 = {
29
+ * const input = { // StartProtectedQueryInput
30
30
  * type: "STRING_VALUE", // required
31
31
  * membershipIdentifier: "STRING_VALUE", // required
32
- * sqlParameters: {
32
+ * sqlParameters: { // ProtectedQuerySQLParameters
33
33
  * queryString: "STRING_VALUE", // required
34
34
  * },
35
- * resultConfiguration: {
36
- * outputConfiguration: { // Union: only one key present
37
- * s3: {
35
+ * resultConfiguration: { // ProtectedQueryResultConfiguration
36
+ * outputConfiguration: { // ProtectedQueryOutputConfiguration Union: only one key present
37
+ * s3: { // ProtectedQueryS3OutputConfiguration
38
38
  * resultFormat: "STRING_VALUE", // required
39
39
  * bucket: "STRING_VALUE", // required
40
40
  * keyPrefix: "STRING_VALUE",
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // TagResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ 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 = {
29
+ * const input = { // UntagResourceInput
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeys // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateCollaborationInput
30
30
  * collaborationIdentifier: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE",
32
32
  * description: "STRING_VALUE",
@@ -26,23 +26,23 @@ 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 = {
29
+ * const input = { // UpdateConfiguredTableAnalysisRuleInput
30
30
  * configuredTableIdentifier: "STRING_VALUE", // required
31
31
  * analysisRuleType: "AGGREGATION" || "LIST", // required
32
- * analysisRulePolicy: { // Union: only one key present
33
- * v1: { // Union: only one key present
34
- * list: {
35
- * joinColumns: [ // 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
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * listColumns: [ // required
39
39
  * "STRING_VALUE",
40
40
  * ],
41
41
  * },
42
- * aggregation: {
43
- * aggregateColumns: [ // required
44
- * {
45
- * columnNames: [ // required
42
+ * aggregation: { // AnalysisRuleAggregation
43
+ * aggregateColumns: [ // AggregateColumnList // required
44
+ * { // AggregateColumn
45
+ * columnNames: [ // AnalysisRuleColumnNameList // required
46
46
  * "STRING_VALUE",
47
47
  * ],
48
48
  * function: "STRING_VALUE", // required
@@ -55,11 +55,11 @@ export interface UpdateConfiguredTableAnalysisRuleCommandOutput extends UpdateCo
55
55
  * dimensionColumns: [ // required
56
56
  * "STRING_VALUE",
57
57
  * ],
58
- * scalarFunctions: [ // required
58
+ * scalarFunctions: [ // ScalarFunctionsList // required
59
59
  * "STRING_VALUE",
60
60
  * ],
61
- * outputConstraints: [ // required
62
- * {
61
+ * outputConstraints: [ // AggregationConstraints // required
62
+ * { // AggregationConstraint
63
63
  * columnName: "STRING_VALUE", // required
64
64
  * minimum: Number("int"), // required
65
65
  * type: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateConfiguredTableAssociationInput
30
30
  * configuredTableAssociationIdentifier: "STRING_VALUE", // required
31
31
  * membershipIdentifier: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateConfiguredTableInput
30
30
  * configuredTableIdentifier: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE",
32
32
  * description: "STRING_VALUE",
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateMembershipInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * queryLogStatus: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ 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 = {
29
+ * const input = { // UpdateProtectedQueryInput
30
30
  * membershipIdentifier: "STRING_VALUE", // required
31
31
  * protectedQueryIdentifier: "STRING_VALUE", // required
32
32
  * targetStatus: "STRING_VALUE", // required
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.300.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.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "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",