@aws-sdk/client-cleanrooms 3.1107.0 → 3.1109.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 (59) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +183 -41
  3. package/dist-es/CleanRooms.js +8 -0
  4. package/dist-es/commands/GetAnalysisLogExportCommand.js +4 -0
  5. package/dist-es/commands/ListAnalysisLogExportsCommand.js +4 -0
  6. package/dist-es/commands/StartAnalysisLogExportCommand.js +4 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +13 -0
  9. package/dist-es/pagination/ListAnalysisLogExportsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +133 -40
  12. package/dist-types/CleanRooms.d.ts +28 -0
  13. package/dist-types/CleanRoomsClient.d.ts +5 -2
  14. package/dist-types/commands/CreateCollaborationChangeRequestCommand.d.ts +5 -5
  15. package/dist-types/commands/CreateCollaborationCommand.d.ts +4 -4
  16. package/dist-types/commands/CreateIntermediateTableAnalysisRuleCommand.d.ts +1 -1
  17. package/dist-types/commands/CreateIntermediateTableCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteIntermediateTableCommand.d.ts +1 -1
  20. package/dist-types/commands/DisallowIntermediateTableCommand.d.ts +1 -1
  21. package/dist-types/commands/GetAnalysisLogExportCommand.d.ts +107 -0
  22. package/dist-types/commands/GetCollaborationChangeRequestCommand.d.ts +3 -3
  23. package/dist-types/commands/GetCollaborationCommand.d.ts +1 -1
  24. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  25. package/dist-types/commands/ListAnalysisLogExportsCommand.d.ts +99 -0
  26. package/dist-types/commands/ListCollaborationChangeRequestsCommand.d.ts +3 -3
  27. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  28. package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
  29. package/dist-types/commands/PopulateIntermediateTableCommand.d.ts +2 -2
  30. package/dist-types/commands/StartAnalysisLogExportCommand.d.ts +119 -0
  31. package/dist-types/commands/UpdateCollaborationChangeRequestCommand.d.ts +3 -3
  32. package/dist-types/commands/UpdateCollaborationCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +3 -0
  34. package/dist-types/commands/UpdateIntermediateTableAnalysisRuleCommand.d.ts +1 -2
  35. package/dist-types/commands/UpdateIntermediateTableCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateMembershipCommand.d.ts +1 -1
  37. package/dist-types/commands/index.d.ts +3 -0
  38. package/dist-types/models/enums.d.ts +29 -0
  39. package/dist-types/models/models_0.d.ts +143 -138
  40. package/dist-types/models/models_1.d.ts +238 -2
  41. package/dist-types/pagination/ListAnalysisLogExportsPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/schemas/schemas_0.d.ts +15 -0
  44. package/dist-types/ts3.4/CleanRooms.d.ts +58 -0
  45. package/dist-types/ts3.4/CleanRoomsClient.d.ts +18 -0
  46. package/dist-types/ts3.4/commands/GetAnalysisLogExportCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/ListAnalysisLogExportsCommand.d.ts +39 -0
  48. package/dist-types/ts3.4/commands/PopulateIntermediateTableCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/StartAnalysisLogExportCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/UpdateIntermediateTableAnalysisRuleCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/UpdateIntermediateTableCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  53. package/dist-types/ts3.4/models/enums.d.ts +17 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +34 -32
  55. package/dist-types/ts3.4/models/models_1.d.ts +69 -0
  56. package/dist-types/ts3.4/pagination/ListAnalysisLogExportsPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
  59. package/package.json +6 -6
@@ -32,6 +32,7 @@ import { type DeleteMemberCommandInput, type DeleteMemberCommandOutput } from ".
32
32
  import { type DeleteMembershipCommandInput, type DeleteMembershipCommandOutput } from "./commands/DeleteMembershipCommand";
33
33
  import { type DeletePrivacyBudgetTemplateCommandInput, type DeletePrivacyBudgetTemplateCommandOutput } from "./commands/DeletePrivacyBudgetTemplateCommand";
34
34
  import { type DisallowIntermediateTableCommandInput, type DisallowIntermediateTableCommandOutput } from "./commands/DisallowIntermediateTableCommand";
35
+ import { type GetAnalysisLogExportCommandInput, type GetAnalysisLogExportCommandOutput } from "./commands/GetAnalysisLogExportCommand";
35
36
  import { type GetAnalysisTemplateCommandInput, type GetAnalysisTemplateCommandOutput } from "./commands/GetAnalysisTemplateCommand";
36
37
  import { type GetCollaborationAnalysisTemplateCommandInput, type GetCollaborationAnalysisTemplateCommandOutput } from "./commands/GetCollaborationAnalysisTemplateCommand";
37
38
  import { type GetCollaborationChangeRequestCommandInput, type GetCollaborationChangeRequestCommandOutput } from "./commands/GetCollaborationChangeRequestCommand";
@@ -54,6 +55,7 @@ import { type GetProtectedJobCommandInput, type GetProtectedJobCommandOutput } f
54
55
  import { type GetProtectedQueryCommandInput, type GetProtectedQueryCommandOutput } from "./commands/GetProtectedQueryCommand";
55
56
  import { type GetSchemaAnalysisRuleCommandInput, type GetSchemaAnalysisRuleCommandOutput } from "./commands/GetSchemaAnalysisRuleCommand";
56
57
  import { type GetSchemaCommandInput, type GetSchemaCommandOutput } from "./commands/GetSchemaCommand";
58
+ import { type ListAnalysisLogExportsCommandInput, type ListAnalysisLogExportsCommandOutput } from "./commands/ListAnalysisLogExportsCommand";
57
59
  import { type ListAnalysisTemplatesCommandInput, type ListAnalysisTemplatesCommandOutput } from "./commands/ListAnalysisTemplatesCommand";
58
60
  import { type ListCollaborationAnalysisTemplatesCommandInput, type ListCollaborationAnalysisTemplatesCommandOutput } from "./commands/ListCollaborationAnalysisTemplatesCommand";
59
61
  import { type ListCollaborationChangeRequestsCommandInput, type ListCollaborationChangeRequestsCommandOutput } from "./commands/ListCollaborationChangeRequestsCommand";
@@ -80,6 +82,7 @@ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOu
80
82
  import { type PopulateIdMappingTableCommandInput, type PopulateIdMappingTableCommandOutput } from "./commands/PopulateIdMappingTableCommand";
81
83
  import { type PopulateIntermediateTableCommandInput, type PopulateIntermediateTableCommandOutput } from "./commands/PopulateIntermediateTableCommand";
82
84
  import { type PreviewPrivacyImpactCommandInput, type PreviewPrivacyImpactCommandOutput } from "./commands/PreviewPrivacyImpactCommand";
85
+ import { type StartAnalysisLogExportCommandInput, type StartAnalysisLogExportCommandOutput } from "./commands/StartAnalysisLogExportCommand";
83
86
  import { type StartProtectedJobCommandInput, type StartProtectedJobCommandOutput } from "./commands/StartProtectedJobCommand";
84
87
  import { type StartProtectedQueryCommandInput, type StartProtectedQueryCommandOutput } from "./commands/StartProtectedQueryCommand";
85
88
  import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
@@ -293,6 +296,12 @@ export interface CleanRooms {
293
296
  disallowIntermediateTable(args: DisallowIntermediateTableCommandInput, options?: __HttpHandlerOptions): Promise<DisallowIntermediateTableCommandOutput>;
294
297
  disallowIntermediateTable(args: DisallowIntermediateTableCommandInput, cb: (err: any, data?: DisallowIntermediateTableCommandOutput) => void): void;
295
298
  disallowIntermediateTable(args: DisallowIntermediateTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisallowIntermediateTableCommandOutput) => void): void;
299
+ /**
300
+ * @see {@link GetAnalysisLogExportCommand}
301
+ */
302
+ getAnalysisLogExport(args: GetAnalysisLogExportCommandInput, options?: __HttpHandlerOptions): Promise<GetAnalysisLogExportCommandOutput>;
303
+ getAnalysisLogExport(args: GetAnalysisLogExportCommandInput, cb: (err: any, data?: GetAnalysisLogExportCommandOutput) => void): void;
304
+ getAnalysisLogExport(args: GetAnalysisLogExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAnalysisLogExportCommandOutput) => void): void;
296
305
  /**
297
306
  * @see {@link GetAnalysisTemplateCommand}
298
307
  */
@@ -425,6 +434,12 @@ export interface CleanRooms {
425
434
  getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, options?: __HttpHandlerOptions): Promise<GetSchemaAnalysisRuleCommandOutput>;
426
435
  getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void): void;
427
436
  getSchemaAnalysisRule(args: GetSchemaAnalysisRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void): void;
437
+ /**
438
+ * @see {@link ListAnalysisLogExportsCommand}
439
+ */
440
+ listAnalysisLogExports(args: ListAnalysisLogExportsCommandInput, options?: __HttpHandlerOptions): Promise<ListAnalysisLogExportsCommandOutput>;
441
+ listAnalysisLogExports(args: ListAnalysisLogExportsCommandInput, cb: (err: any, data?: ListAnalysisLogExportsCommandOutput) => void): void;
442
+ listAnalysisLogExports(args: ListAnalysisLogExportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAnalysisLogExportsCommandOutput) => void): void;
428
443
  /**
429
444
  * @see {@link ListAnalysisTemplatesCommand}
430
445
  */
@@ -584,6 +599,12 @@ export interface CleanRooms {
584
599
  previewPrivacyImpact(args: PreviewPrivacyImpactCommandInput, options?: __HttpHandlerOptions): Promise<PreviewPrivacyImpactCommandOutput>;
585
600
  previewPrivacyImpact(args: PreviewPrivacyImpactCommandInput, cb: (err: any, data?: PreviewPrivacyImpactCommandOutput) => void): void;
586
601
  previewPrivacyImpact(args: PreviewPrivacyImpactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PreviewPrivacyImpactCommandOutput) => void): void;
602
+ /**
603
+ * @see {@link StartAnalysisLogExportCommand}
604
+ */
605
+ startAnalysisLogExport(args: StartAnalysisLogExportCommandInput, options?: __HttpHandlerOptions): Promise<StartAnalysisLogExportCommandOutput>;
606
+ startAnalysisLogExport(args: StartAnalysisLogExportCommandInput, cb: (err: any, data?: StartAnalysisLogExportCommandOutput) => void): void;
607
+ startAnalysisLogExport(args: StartAnalysisLogExportCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAnalysisLogExportCommandOutput) => void): void;
587
608
  /**
588
609
  * @see {@link StartProtectedJobCommand}
589
610
  */
@@ -704,6 +725,13 @@ export interface CleanRooms {
704
725
  updateProtectedQuery(args: UpdateProtectedQueryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProtectedQueryCommandOutput>;
705
726
  updateProtectedQuery(args: UpdateProtectedQueryCommandInput, cb: (err: any, data?: UpdateProtectedQueryCommandOutput) => void): void;
706
727
  updateProtectedQuery(args: UpdateProtectedQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProtectedQueryCommandOutput) => void): void;
728
+ /**
729
+ * @see {@link ListAnalysisLogExportsCommand}
730
+ * @param args - command input.
731
+ * @param paginationConfig - optional pagination config.
732
+ * @returns AsyncIterable of {@link ListAnalysisLogExportsCommandOutput}.
733
+ */
734
+ paginateListAnalysisLogExports(args: ListAnalysisLogExportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAnalysisLogExportsCommandOutput>;
707
735
  /**
708
736
  * @see {@link ListAnalysisTemplatesCommand}
709
737
  * @param args - command input.
@@ -38,6 +38,7 @@ import type { DeleteMemberCommandInput, DeleteMemberCommandOutput } from "./comm
38
38
  import type { DeleteMembershipCommandInput, DeleteMembershipCommandOutput } from "./commands/DeleteMembershipCommand";
39
39
  import type { DeletePrivacyBudgetTemplateCommandInput, DeletePrivacyBudgetTemplateCommandOutput } from "./commands/DeletePrivacyBudgetTemplateCommand";
40
40
  import type { DisallowIntermediateTableCommandInput, DisallowIntermediateTableCommandOutput } from "./commands/DisallowIntermediateTableCommand";
41
+ import type { GetAnalysisLogExportCommandInput, GetAnalysisLogExportCommandOutput } from "./commands/GetAnalysisLogExportCommand";
41
42
  import type { GetAnalysisTemplateCommandInput, GetAnalysisTemplateCommandOutput } from "./commands/GetAnalysisTemplateCommand";
42
43
  import type { GetCollaborationAnalysisTemplateCommandInput, GetCollaborationAnalysisTemplateCommandOutput } from "./commands/GetCollaborationAnalysisTemplateCommand";
43
44
  import type { GetCollaborationChangeRequestCommandInput, GetCollaborationChangeRequestCommandOutput } from "./commands/GetCollaborationChangeRequestCommand";
@@ -60,6 +61,7 @@ import type { GetProtectedJobCommandInput, GetProtectedJobCommandOutput } from "
60
61
  import type { GetProtectedQueryCommandInput, GetProtectedQueryCommandOutput } from "./commands/GetProtectedQueryCommand";
61
62
  import type { GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput } from "./commands/GetSchemaAnalysisRuleCommand";
62
63
  import type { GetSchemaCommandInput, GetSchemaCommandOutput } from "./commands/GetSchemaCommand";
64
+ import type { ListAnalysisLogExportsCommandInput, ListAnalysisLogExportsCommandOutput } from "./commands/ListAnalysisLogExportsCommand";
63
65
  import type { ListAnalysisTemplatesCommandInput, ListAnalysisTemplatesCommandOutput } from "./commands/ListAnalysisTemplatesCommand";
64
66
  import type { ListCollaborationAnalysisTemplatesCommandInput, ListCollaborationAnalysisTemplatesCommandOutput } from "./commands/ListCollaborationAnalysisTemplatesCommand";
65
67
  import type { ListCollaborationChangeRequestsCommandInput, ListCollaborationChangeRequestsCommandOutput } from "./commands/ListCollaborationChangeRequestsCommand";
@@ -86,6 +88,7 @@ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput
86
88
  import type { PopulateIdMappingTableCommandInput, PopulateIdMappingTableCommandOutput } from "./commands/PopulateIdMappingTableCommand";
87
89
  import type { PopulateIntermediateTableCommandInput, PopulateIntermediateTableCommandOutput } from "./commands/PopulateIntermediateTableCommand";
88
90
  import type { PreviewPrivacyImpactCommandInput, PreviewPrivacyImpactCommandOutput } from "./commands/PreviewPrivacyImpactCommand";
91
+ import type { StartAnalysisLogExportCommandInput, StartAnalysisLogExportCommandOutput } from "./commands/StartAnalysisLogExportCommand";
89
92
  import type { StartProtectedJobCommandInput, StartProtectedJobCommandOutput } from "./commands/StartProtectedJobCommand";
90
93
  import type { StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput } from "./commands/StartProtectedQueryCommand";
91
94
  import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
@@ -112,11 +115,11 @@ export { __Client };
112
115
  /**
113
116
  * @public
114
117
  */
115
- export type ServiceInputTypes = BatchGetCollaborationAnalysisTemplateCommandInput | BatchGetSchemaAnalysisRuleCommandInput | BatchGetSchemaCommandInput | CreateAnalysisTemplateCommandInput | CreateCollaborationChangeRequestCommandInput | CreateCollaborationCommandInput | CreateConfiguredAudienceModelAssociationCommandInput | CreateConfiguredTableAnalysisRuleCommandInput | CreateConfiguredTableAssociationAnalysisRuleCommandInput | CreateConfiguredTableAssociationCommandInput | CreateConfiguredTableCommandInput | CreateIdMappingTableCommandInput | CreateIdNamespaceAssociationCommandInput | CreateIntermediateTableAnalysisRuleCommandInput | CreateIntermediateTableCommandInput | CreateMembershipCommandInput | CreatePrivacyBudgetTemplateCommandInput | DeleteAnalysisTemplateCommandInput | DeleteCollaborationCommandInput | DeleteConfiguredAudienceModelAssociationCommandInput | DeleteConfiguredTableAnalysisRuleCommandInput | DeleteConfiguredTableAssociationAnalysisRuleCommandInput | DeleteConfiguredTableAssociationCommandInput | DeleteConfiguredTableCommandInput | DeleteIdMappingTableCommandInput | DeleteIdNamespaceAssociationCommandInput | DeleteIntermediateTableAnalysisRuleCommandInput | DeleteIntermediateTableCommandInput | DeleteMemberCommandInput | DeleteMembershipCommandInput | DeletePrivacyBudgetTemplateCommandInput | DisallowIntermediateTableCommandInput | GetAnalysisTemplateCommandInput | GetCollaborationAnalysisTemplateCommandInput | GetCollaborationChangeRequestCommandInput | GetCollaborationCommandInput | GetCollaborationConfiguredAudienceModelAssociationCommandInput | GetCollaborationIdNamespaceAssociationCommandInput | GetCollaborationPrivacyBudgetTemplateCommandInput | GetConfiguredAudienceModelAssociationCommandInput | GetConfiguredTableAnalysisRuleCommandInput | GetConfiguredTableAssociationAnalysisRuleCommandInput | GetConfiguredTableAssociationCommandInput | GetConfiguredTableCommandInput | GetIdMappingTableCommandInput | GetIdNamespaceAssociationCommandInput | GetIntermediateTableAnalysisRuleCommandInput | GetIntermediateTableCommandInput | GetMembershipCommandInput | GetPrivacyBudgetTemplateCommandInput | GetProtectedJobCommandInput | GetProtectedQueryCommandInput | GetSchemaAnalysisRuleCommandInput | GetSchemaCommandInput | ListAnalysisTemplatesCommandInput | ListCollaborationAnalysisTemplatesCommandInput | ListCollaborationChangeRequestsCommandInput | ListCollaborationConfiguredAudienceModelAssociationsCommandInput | ListCollaborationIdNamespaceAssociationsCommandInput | ListCollaborationPrivacyBudgetTemplatesCommandInput | ListCollaborationPrivacyBudgetsCommandInput | ListCollaborationsCommandInput | ListConfiguredAudienceModelAssociationsCommandInput | ListConfiguredTableAssociationsCommandInput | ListConfiguredTablesCommandInput | ListIdMappingTablesCommandInput | ListIdNamespaceAssociationsCommandInput | ListIntermediateTableVersionsCommandInput | ListIntermediateTablesCommandInput | ListMembersCommandInput | ListMembershipsCommandInput | ListPrivacyBudgetTemplatesCommandInput | ListPrivacyBudgetsCommandInput | ListProtectedJobsCommandInput | ListProtectedQueriesCommandInput | ListSchemasCommandInput | ListTagsForResourceCommandInput | PopulateIdMappingTableCommandInput | PopulateIntermediateTableCommandInput | PreviewPrivacyImpactCommandInput | StartProtectedJobCommandInput | StartProtectedQueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnalysisTemplateCommandInput | UpdateCollaborationChangeRequestCommandInput | UpdateCollaborationCommandInput | UpdateConfiguredAudienceModelAssociationCommandInput | UpdateConfiguredTableAnalysisRuleCommandInput | UpdateConfiguredTableAssociationAnalysisRuleCommandInput | UpdateConfiguredTableAssociationCommandInput | UpdateConfiguredTableCommandInput | UpdateIdMappingTableCommandInput | UpdateIdNamespaceAssociationCommandInput | UpdateIntermediateTableAnalysisRuleCommandInput | UpdateIntermediateTableCommandInput | UpdateMembershipCommandInput | UpdatePrivacyBudgetTemplateCommandInput | UpdateProtectedJobCommandInput | UpdateProtectedQueryCommandInput;
118
+ export type ServiceInputTypes = BatchGetCollaborationAnalysisTemplateCommandInput | BatchGetSchemaAnalysisRuleCommandInput | BatchGetSchemaCommandInput | CreateAnalysisTemplateCommandInput | CreateCollaborationChangeRequestCommandInput | CreateCollaborationCommandInput | CreateConfiguredAudienceModelAssociationCommandInput | CreateConfiguredTableAnalysisRuleCommandInput | CreateConfiguredTableAssociationAnalysisRuleCommandInput | CreateConfiguredTableAssociationCommandInput | CreateConfiguredTableCommandInput | CreateIdMappingTableCommandInput | CreateIdNamespaceAssociationCommandInput | CreateIntermediateTableAnalysisRuleCommandInput | CreateIntermediateTableCommandInput | CreateMembershipCommandInput | CreatePrivacyBudgetTemplateCommandInput | DeleteAnalysisTemplateCommandInput | DeleteCollaborationCommandInput | DeleteConfiguredAudienceModelAssociationCommandInput | DeleteConfiguredTableAnalysisRuleCommandInput | DeleteConfiguredTableAssociationAnalysisRuleCommandInput | DeleteConfiguredTableAssociationCommandInput | DeleteConfiguredTableCommandInput | DeleteIdMappingTableCommandInput | DeleteIdNamespaceAssociationCommandInput | DeleteIntermediateTableAnalysisRuleCommandInput | DeleteIntermediateTableCommandInput | DeleteMemberCommandInput | DeleteMembershipCommandInput | DeletePrivacyBudgetTemplateCommandInput | DisallowIntermediateTableCommandInput | GetAnalysisLogExportCommandInput | GetAnalysisTemplateCommandInput | GetCollaborationAnalysisTemplateCommandInput | GetCollaborationChangeRequestCommandInput | GetCollaborationCommandInput | GetCollaborationConfiguredAudienceModelAssociationCommandInput | GetCollaborationIdNamespaceAssociationCommandInput | GetCollaborationPrivacyBudgetTemplateCommandInput | GetConfiguredAudienceModelAssociationCommandInput | GetConfiguredTableAnalysisRuleCommandInput | GetConfiguredTableAssociationAnalysisRuleCommandInput | GetConfiguredTableAssociationCommandInput | GetConfiguredTableCommandInput | GetIdMappingTableCommandInput | GetIdNamespaceAssociationCommandInput | GetIntermediateTableAnalysisRuleCommandInput | GetIntermediateTableCommandInput | GetMembershipCommandInput | GetPrivacyBudgetTemplateCommandInput | GetProtectedJobCommandInput | GetProtectedQueryCommandInput | GetSchemaAnalysisRuleCommandInput | GetSchemaCommandInput | ListAnalysisLogExportsCommandInput | ListAnalysisTemplatesCommandInput | ListCollaborationAnalysisTemplatesCommandInput | ListCollaborationChangeRequestsCommandInput | ListCollaborationConfiguredAudienceModelAssociationsCommandInput | ListCollaborationIdNamespaceAssociationsCommandInput | ListCollaborationPrivacyBudgetTemplatesCommandInput | ListCollaborationPrivacyBudgetsCommandInput | ListCollaborationsCommandInput | ListConfiguredAudienceModelAssociationsCommandInput | ListConfiguredTableAssociationsCommandInput | ListConfiguredTablesCommandInput | ListIdMappingTablesCommandInput | ListIdNamespaceAssociationsCommandInput | ListIntermediateTableVersionsCommandInput | ListIntermediateTablesCommandInput | ListMembersCommandInput | ListMembershipsCommandInput | ListPrivacyBudgetTemplatesCommandInput | ListPrivacyBudgetsCommandInput | ListProtectedJobsCommandInput | ListProtectedQueriesCommandInput | ListSchemasCommandInput | ListTagsForResourceCommandInput | PopulateIdMappingTableCommandInput | PopulateIntermediateTableCommandInput | PreviewPrivacyImpactCommandInput | StartAnalysisLogExportCommandInput | StartProtectedJobCommandInput | StartProtectedQueryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnalysisTemplateCommandInput | UpdateCollaborationChangeRequestCommandInput | UpdateCollaborationCommandInput | UpdateConfiguredAudienceModelAssociationCommandInput | UpdateConfiguredTableAnalysisRuleCommandInput | UpdateConfiguredTableAssociationAnalysisRuleCommandInput | UpdateConfiguredTableAssociationCommandInput | UpdateConfiguredTableCommandInput | UpdateIdMappingTableCommandInput | UpdateIdNamespaceAssociationCommandInput | UpdateIntermediateTableAnalysisRuleCommandInput | UpdateIntermediateTableCommandInput | UpdateMembershipCommandInput | UpdatePrivacyBudgetTemplateCommandInput | UpdateProtectedJobCommandInput | UpdateProtectedQueryCommandInput;
116
119
  /**
117
120
  * @public
118
121
  */
119
- export type ServiceOutputTypes = BatchGetCollaborationAnalysisTemplateCommandOutput | BatchGetSchemaAnalysisRuleCommandOutput | BatchGetSchemaCommandOutput | CreateAnalysisTemplateCommandOutput | CreateCollaborationChangeRequestCommandOutput | CreateCollaborationCommandOutput | CreateConfiguredAudienceModelAssociationCommandOutput | CreateConfiguredTableAnalysisRuleCommandOutput | CreateConfiguredTableAssociationAnalysisRuleCommandOutput | CreateConfiguredTableAssociationCommandOutput | CreateConfiguredTableCommandOutput | CreateIdMappingTableCommandOutput | CreateIdNamespaceAssociationCommandOutput | CreateIntermediateTableAnalysisRuleCommandOutput | CreateIntermediateTableCommandOutput | CreateMembershipCommandOutput | CreatePrivacyBudgetTemplateCommandOutput | DeleteAnalysisTemplateCommandOutput | DeleteCollaborationCommandOutput | DeleteConfiguredAudienceModelAssociationCommandOutput | DeleteConfiguredTableAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationCommandOutput | DeleteConfiguredTableCommandOutput | DeleteIdMappingTableCommandOutput | DeleteIdNamespaceAssociationCommandOutput | DeleteIntermediateTableAnalysisRuleCommandOutput | DeleteIntermediateTableCommandOutput | DeleteMemberCommandOutput | DeleteMembershipCommandOutput | DeletePrivacyBudgetTemplateCommandOutput | DisallowIntermediateTableCommandOutput | GetAnalysisTemplateCommandOutput | GetCollaborationAnalysisTemplateCommandOutput | GetCollaborationChangeRequestCommandOutput | GetCollaborationCommandOutput | GetCollaborationConfiguredAudienceModelAssociationCommandOutput | GetCollaborationIdNamespaceAssociationCommandOutput | GetCollaborationPrivacyBudgetTemplateCommandOutput | GetConfiguredAudienceModelAssociationCommandOutput | GetConfiguredTableAnalysisRuleCommandOutput | GetConfiguredTableAssociationAnalysisRuleCommandOutput | GetConfiguredTableAssociationCommandOutput | GetConfiguredTableCommandOutput | GetIdMappingTableCommandOutput | GetIdNamespaceAssociationCommandOutput | GetIntermediateTableAnalysisRuleCommandOutput | GetIntermediateTableCommandOutput | GetMembershipCommandOutput | GetPrivacyBudgetTemplateCommandOutput | GetProtectedJobCommandOutput | GetProtectedQueryCommandOutput | GetSchemaAnalysisRuleCommandOutput | GetSchemaCommandOutput | ListAnalysisTemplatesCommandOutput | ListCollaborationAnalysisTemplatesCommandOutput | ListCollaborationChangeRequestsCommandOutput | ListCollaborationConfiguredAudienceModelAssociationsCommandOutput | ListCollaborationIdNamespaceAssociationsCommandOutput | ListCollaborationPrivacyBudgetTemplatesCommandOutput | ListCollaborationPrivacyBudgetsCommandOutput | ListCollaborationsCommandOutput | ListConfiguredAudienceModelAssociationsCommandOutput | ListConfiguredTableAssociationsCommandOutput | ListConfiguredTablesCommandOutput | ListIdMappingTablesCommandOutput | ListIdNamespaceAssociationsCommandOutput | ListIntermediateTableVersionsCommandOutput | ListIntermediateTablesCommandOutput | ListMembersCommandOutput | ListMembershipsCommandOutput | ListPrivacyBudgetTemplatesCommandOutput | ListPrivacyBudgetsCommandOutput | ListProtectedJobsCommandOutput | ListProtectedQueriesCommandOutput | ListSchemasCommandOutput | ListTagsForResourceCommandOutput | PopulateIdMappingTableCommandOutput | PopulateIntermediateTableCommandOutput | PreviewPrivacyImpactCommandOutput | StartProtectedJobCommandOutput | StartProtectedQueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnalysisTemplateCommandOutput | UpdateCollaborationChangeRequestCommandOutput | UpdateCollaborationCommandOutput | UpdateConfiguredAudienceModelAssociationCommandOutput | UpdateConfiguredTableAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationCommandOutput | UpdateConfiguredTableCommandOutput | UpdateIdMappingTableCommandOutput | UpdateIdNamespaceAssociationCommandOutput | UpdateIntermediateTableAnalysisRuleCommandOutput | UpdateIntermediateTableCommandOutput | UpdateMembershipCommandOutput | UpdatePrivacyBudgetTemplateCommandOutput | UpdateProtectedJobCommandOutput | UpdateProtectedQueryCommandOutput;
122
+ export type ServiceOutputTypes = BatchGetCollaborationAnalysisTemplateCommandOutput | BatchGetSchemaAnalysisRuleCommandOutput | BatchGetSchemaCommandOutput | CreateAnalysisTemplateCommandOutput | CreateCollaborationChangeRequestCommandOutput | CreateCollaborationCommandOutput | CreateConfiguredAudienceModelAssociationCommandOutput | CreateConfiguredTableAnalysisRuleCommandOutput | CreateConfiguredTableAssociationAnalysisRuleCommandOutput | CreateConfiguredTableAssociationCommandOutput | CreateConfiguredTableCommandOutput | CreateIdMappingTableCommandOutput | CreateIdNamespaceAssociationCommandOutput | CreateIntermediateTableAnalysisRuleCommandOutput | CreateIntermediateTableCommandOutput | CreateMembershipCommandOutput | CreatePrivacyBudgetTemplateCommandOutput | DeleteAnalysisTemplateCommandOutput | DeleteCollaborationCommandOutput | DeleteConfiguredAudienceModelAssociationCommandOutput | DeleteConfiguredTableAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationAnalysisRuleCommandOutput | DeleteConfiguredTableAssociationCommandOutput | DeleteConfiguredTableCommandOutput | DeleteIdMappingTableCommandOutput | DeleteIdNamespaceAssociationCommandOutput | DeleteIntermediateTableAnalysisRuleCommandOutput | DeleteIntermediateTableCommandOutput | DeleteMemberCommandOutput | DeleteMembershipCommandOutput | DeletePrivacyBudgetTemplateCommandOutput | DisallowIntermediateTableCommandOutput | GetAnalysisLogExportCommandOutput | GetAnalysisTemplateCommandOutput | GetCollaborationAnalysisTemplateCommandOutput | GetCollaborationChangeRequestCommandOutput | GetCollaborationCommandOutput | GetCollaborationConfiguredAudienceModelAssociationCommandOutput | GetCollaborationIdNamespaceAssociationCommandOutput | GetCollaborationPrivacyBudgetTemplateCommandOutput | GetConfiguredAudienceModelAssociationCommandOutput | GetConfiguredTableAnalysisRuleCommandOutput | GetConfiguredTableAssociationAnalysisRuleCommandOutput | GetConfiguredTableAssociationCommandOutput | GetConfiguredTableCommandOutput | GetIdMappingTableCommandOutput | GetIdNamespaceAssociationCommandOutput | GetIntermediateTableAnalysisRuleCommandOutput | GetIntermediateTableCommandOutput | GetMembershipCommandOutput | GetPrivacyBudgetTemplateCommandOutput | GetProtectedJobCommandOutput | GetProtectedQueryCommandOutput | GetSchemaAnalysisRuleCommandOutput | GetSchemaCommandOutput | ListAnalysisLogExportsCommandOutput | ListAnalysisTemplatesCommandOutput | ListCollaborationAnalysisTemplatesCommandOutput | ListCollaborationChangeRequestsCommandOutput | ListCollaborationConfiguredAudienceModelAssociationsCommandOutput | ListCollaborationIdNamespaceAssociationsCommandOutput | ListCollaborationPrivacyBudgetTemplatesCommandOutput | ListCollaborationPrivacyBudgetsCommandOutput | ListCollaborationsCommandOutput | ListConfiguredAudienceModelAssociationsCommandOutput | ListConfiguredTableAssociationsCommandOutput | ListConfiguredTablesCommandOutput | ListIdMappingTablesCommandOutput | ListIdNamespaceAssociationsCommandOutput | ListIntermediateTableVersionsCommandOutput | ListIntermediateTablesCommandOutput | ListMembersCommandOutput | ListMembershipsCommandOutput | ListPrivacyBudgetTemplatesCommandOutput | ListPrivacyBudgetsCommandOutput | ListProtectedJobsCommandOutput | ListProtectedQueriesCommandOutput | ListSchemasCommandOutput | ListTagsForResourceCommandOutput | PopulateIdMappingTableCommandOutput | PopulateIntermediateTableCommandOutput | PreviewPrivacyImpactCommandOutput | StartAnalysisLogExportCommandOutput | StartProtectedJobCommandOutput | StartProtectedQueryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnalysisTemplateCommandOutput | UpdateCollaborationChangeRequestCommandOutput | UpdateCollaborationCommandOutput | UpdateConfiguredAudienceModelAssociationCommandOutput | UpdateConfiguredTableAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationAnalysisRuleCommandOutput | UpdateConfiguredTableAssociationCommandOutput | UpdateConfiguredTableCommandOutput | UpdateIdMappingTableCommandOutput | UpdateIdNamespaceAssociationCommandOutput | UpdateIntermediateTableAnalysisRuleCommandOutput | UpdateIntermediateTableCommandOutput | UpdateMembershipCommandOutput | UpdatePrivacyBudgetTemplateCommandOutput | UpdateProtectedJobCommandOutput | UpdateProtectedQueryCommandOutput;
120
123
  /**
121
124
  * @public
122
125
  */
@@ -42,7 +42,7 @@ declare const CreateCollaborationChangeRequestCommand_base: {
42
42
  * member: { // MemberChangeSpecification
43
43
  * accountId: "STRING_VALUE", // required
44
44
  * memberAbilities: [ // MemberAbilities // required
45
- * "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
45
+ * "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
46
46
  * ],
47
47
  * mlMemberAbilities: { // MLMemberAbilities
48
48
  * customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -72,7 +72,7 @@ declare const CreateCollaborationChangeRequestCommand_base: {
72
72
  * },
73
73
  * collaboration: { // CollaborationChangeSpecification
74
74
  * autoApprovedChangeTypes: [ // AutoApprovedChangeTypeList
75
- * "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
75
+ * "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
76
76
  * ],
77
77
  * },
78
78
  * },
@@ -96,7 +96,7 @@ declare const CreateCollaborationChangeRequestCommand_base: {
96
96
  * // member: { // MemberChangeSpecification
97
97
  * // accountId: "STRING_VALUE", // required
98
98
  * // memberAbilities: [ // MemberAbilities // required
99
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
99
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
100
100
  * // ],
101
101
  * // mlMemberAbilities: { // MLMemberAbilities
102
102
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -126,12 +126,12 @@ declare const CreateCollaborationChangeRequestCommand_base: {
126
126
  * // },
127
127
  * // collaboration: { // CollaborationChangeSpecification
128
128
  * // autoApprovedChangeTypes: [ // AutoApprovedChangeTypeList
129
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
129
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
130
130
  * // ],
131
131
  * // },
132
132
  * // },
133
133
  * // types: [ // ChangeTypeList // required
134
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "EDIT_AUTO_APPROVED_CHANGE_TYPES" || "ADD_PAYER_CANDIDATE" || "REMOVE_PAYER_CANDIDATE" || "GRANT_CAN_RECEIVE_MODEL_OUTPUT" || "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" || "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" || "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT",
134
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "EDIT_AUTO_APPROVED_CHANGE_TYPES" || "ADD_PAYER_CANDIDATE" || "REMOVE_PAYER_CANDIDATE" || "GRANT_CAN_RECEIVE_MODEL_OUTPUT" || "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" || "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" || "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
135
135
  * // ],
136
136
  * // },
137
137
  * // ],
@@ -38,7 +38,7 @@ declare const CreateCollaborationCommand_base: {
38
38
  * { // MemberSpecification
39
39
  * accountId: "STRING_VALUE", // required
40
40
  * memberAbilities: [ // MemberAbilities // required
41
- * "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
41
+ * "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
42
42
  * ],
43
43
  * mlMemberAbilities: { // MLMemberAbilities
44
44
  * customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -70,7 +70,7 @@ declare const CreateCollaborationCommand_base: {
70
70
  * name: "STRING_VALUE", // required
71
71
  * description: "STRING_VALUE",
72
72
  * creatorMemberAbilities: [ // required
73
- * "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
73
+ * "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
74
74
  * ],
75
75
  * creatorMLMemberAbilities: {
76
76
  * customMLMemberAbilities: [ // required
@@ -110,7 +110,7 @@ declare const CreateCollaborationCommand_base: {
110
110
  * },
111
111
  * analyticsEngine: "SPARK" || "CLEAN_ROOMS_SQL",
112
112
  * autoApprovedChangeRequestTypes: [ // AutoApprovedChangeTypeList
113
- * "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
113
+ * "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
114
114
  * ],
115
115
  * allowedResultRegions: [ // AllowedResultRegions
116
116
  * "us-west-1" || "us-west-2" || "us-east-1" || "us-east-2" || "af-south-1" || "ap-east-1" || "ap-east-2" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-5" || "ap-southeast-4" || "ap-southeast-7" || "ap-south-1" || "ap-northeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ca-central-1" || "ca-west-1" || "eu-south-1" || "eu-west-3" || "eu-south-2" || "eu-central-2" || "eu-central-1" || "eu-north-1" || "eu-west-1" || "eu-west-2" || "me-south-1" || "me-central-1" || "il-central-1" || "sa-east-1" || "mx-central-1",
@@ -142,7 +142,7 @@ declare const CreateCollaborationCommand_base: {
142
142
  * // jobLogStatus: "ENABLED" || "DISABLED",
143
143
  * // analyticsEngine: "SPARK" || "CLEAN_ROOMS_SQL",
144
144
  * // autoApprovedChangeTypes: [ // AutoApprovedChangeTypeList
145
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
145
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
146
146
  * // ],
147
147
  * // allowedResultRegions: [ // AllowedResultRegions
148
148
  * // "us-west-1" || "us-west-2" || "us-east-1" || "us-east-2" || "af-south-1" || "ap-east-1" || "ap-east-2" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-5" || "ap-southeast-4" || "ap-southeast-7" || "ap-south-1" || "ap-northeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ca-central-1" || "ca-west-1" || "eu-south-1" || "eu-west-3" || "eu-south-2" || "eu-central-2" || "eu-central-1" || "eu-north-1" || "eu-west-1" || "eu-west-2" || "me-south-1" || "me-central-1" || "il-central-1" || "sa-east-1" || "mx-central-1",
@@ -24,7 +24,7 @@ declare const CreateIntermediateTableAnalysisRuleCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Creates an analysis rule for an intermediate table. Only the CUSTOM analysis rule type is supported. The service automatically determines whether the rule is first-party or multi-party restricted based on the intermediate table's inherited constraints. Only the intermediate table owner can call this operation.</p>
27
+ * <p>Creates an analysis rule for an intermediate table. Only the CUSTOM analysis rule type is supported. Only the intermediate table owner can call this operation.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript
@@ -24,7 +24,7 @@ declare const CreateIntermediateTableCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Creates an intermediate table in a membership. An intermediate table stores a query definition that you can execute later using <code>PopulateIntermediateTable</code> to materialize cached results. The intermediate table is owned by the member with the CAN_QUERY ability. This operation does not execute the stored query.</p>
27
+ * <p>Creates an intermediate table in a membership. The intermediate table is owned by the member with the CAN_QUERY ability. To populate the table with results, use <code>PopulateIntermediateTable</code>.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript
@@ -96,7 +96,7 @@ declare const CreateMembershipCommand_base: {
96
96
  * // updateTime: new Date("TIMESTAMP"), // required
97
97
  * // status: "STRING_VALUE", // required
98
98
  * // memberAbilities: [ // MemberAbilities // required
99
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
99
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
100
100
  * // ],
101
101
  * // mlMemberAbilities: { // MLMemberAbilities
102
102
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -24,7 +24,7 @@ declare const DeleteIntermediateTableCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Deletes an intermediate table. When you delete the table, the service marks it as DELETED, removes its analysis rule and schema, and triggers storage cleanup. This operation is idempotent. Only the intermediate table owner can call this operation.</p>
27
+ * <p>Deletes an intermediate table. The delete is idempotent. Only the intermediate table owner can call this operation.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript
@@ -24,7 +24,7 @@ declare const DisallowIntermediateTableCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Invalidates a specific intermediate table that references the caller's base table. The data provider (base table owner) calls this operation, not the intermediate table owner. By default, invalidation cascades to descendant intermediate tables.</p>
27
+ * <p>Marks an intermediate table as invalid when it references the caller's base table. The data provider (base table owner) calls this operation, not the intermediate table owner. By default, the operation also marks all descendant intermediate tables as invalid.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript
@@ -0,0 +1,107 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { GetAnalysisLogExportInput, GetAnalysisLogExportOutput } from "../models/models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link GetAnalysisLogExportCommand}.
11
+ */
12
+ export interface GetAnalysisLogExportCommandInput extends GetAnalysisLogExportInput {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link GetAnalysisLogExportCommand}.
18
+ */
19
+ export interface GetAnalysisLogExportCommandOutput extends GetAnalysisLogExportOutput, __MetadataBearer {
20
+ }
21
+ declare const GetAnalysisLogExportCommand_base: {
22
+ new (input: GetAnalysisLogExportCommandInput): import("@smithy/core/client").CommandImpl<GetAnalysisLogExportCommandInput, GetAnalysisLogExportCommandOutput, import("..").CleanRoomsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetAnalysisLogExportCommandInput): import("@smithy/core/client").CommandImpl<GetAnalysisLogExportCommandInput, GetAnalysisLogExportCommandOutput, import("..").CleanRoomsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Returns information about an analysis log export, including its current status and, if the export failed, the reason for the failure.</p> <p>Poll this operation until the <code>status</code> is <code>SUCCESS</code> or <code>FAILED</code>. An export can't be canceled after it starts.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { CleanRoomsClient, GetAnalysisLogExportCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
32
+ * // const { CleanRoomsClient, GetAnalysisLogExportCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
33
+ * // import type { CleanRoomsClientConfig } from "@aws-sdk/client-cleanrooms";
34
+ * const config = {}; // type is CleanRoomsClientConfig
35
+ * const client = new CleanRoomsClient(config);
36
+ * const input = { // GetAnalysisLogExportInput
37
+ * membershipIdentifier: "STRING_VALUE", // required
38
+ * analysisLogExportIdentifier: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new GetAnalysisLogExportCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetAnalysisLogExportOutput
43
+ * // analysisLogExport: { // AnalysisLogExport
44
+ * // analysisLogExportId: "STRING_VALUE", // required
45
+ * // analysisId: "STRING_VALUE", // required
46
+ * // analysisType: "PROTECTED_QUERY", // required
47
+ * // membershipId: "STRING_VALUE", // required
48
+ * // status: "IN_PROGRESS" || "SUCCESS" || "FAILED", // required
49
+ * // resultConfiguration: { // AnalysisLogExportResultConfiguration
50
+ * // outputConfiguration: { // AnalysisLogExportOutputConfiguration
51
+ * // s3: { // AnalysisLogExportS3OutputConfiguration
52
+ * // bucket: "STRING_VALUE", // required
53
+ * // keyPrefix: "STRING_VALUE",
54
+ * // },
55
+ * // },
56
+ * // },
57
+ * // createTime: new Date("TIMESTAMP"), // required
58
+ * // updateTime: new Date("TIMESTAMP"), // required
59
+ * // error: { // AnalysisLogExportError
60
+ * // code: "STRING_VALUE", // required
61
+ * // message: "STRING_VALUE", // required
62
+ * // },
63
+ * // },
64
+ * // };
65
+ *
66
+ * ```
67
+ *
68
+ * @param GetAnalysisLogExportCommandInput - {@link GetAnalysisLogExportCommandInput}
69
+ * @returns {@link GetAnalysisLogExportCommandOutput}
70
+ * @see {@link GetAnalysisLogExportCommandInput} for command's `input` shape.
71
+ * @see {@link GetAnalysisLogExportCommandOutput} for command's `response` shape.
72
+ * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
73
+ *
74
+ * @throws {@link AccessDeniedException} (client fault)
75
+ * <p>Caller does not have sufficient access to perform this action.</p>
76
+ *
77
+ * @throws {@link InternalServerException} (server fault)
78
+ * <p>Unexpected error during processing of request.</p>
79
+ *
80
+ * @throws {@link ResourceNotFoundException} (client fault)
81
+ * <p>Request references a resource which does not exist.</p>
82
+ *
83
+ * @throws {@link ThrottlingException} (client fault)
84
+ * <p>Request was denied due to request throttling.</p>
85
+ *
86
+ * @throws {@link ValidationException} (client fault)
87
+ * <p>The input fails to satisfy the specified constraints.</p>
88
+ *
89
+ * @throws {@link CleanRoomsServiceException}
90
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
91
+ *
92
+ *
93
+ * @public
94
+ */
95
+ export declare class GetAnalysisLogExportCommand extends GetAnalysisLogExportCommand_base {
96
+ /** @internal type navigation helper, not in runtime. */
97
+ protected static __types: {
98
+ api: {
99
+ input: GetAnalysisLogExportInput;
100
+ output: GetAnalysisLogExportOutput;
101
+ };
102
+ sdk: {
103
+ input: GetAnalysisLogExportCommandInput;
104
+ output: GetAnalysisLogExportCommandOutput;
105
+ };
106
+ };
107
+ }
@@ -54,7 +54,7 @@ declare const GetCollaborationChangeRequestCommand_base: {
54
54
  * // member: { // MemberChangeSpecification
55
55
  * // accountId: "STRING_VALUE", // required
56
56
  * // memberAbilities: [ // MemberAbilities // required
57
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
57
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
58
58
  * // ],
59
59
  * // mlMemberAbilities: { // MLMemberAbilities
60
60
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -84,12 +84,12 @@ declare const GetCollaborationChangeRequestCommand_base: {
84
84
  * // },
85
85
  * // collaboration: { // CollaborationChangeSpecification
86
86
  * // autoApprovedChangeTypes: [ // AutoApprovedChangeTypeList
87
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
87
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
88
88
  * // ],
89
89
  * // },
90
90
  * // },
91
91
  * // types: [ // ChangeTypeList // required
92
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "EDIT_AUTO_APPROVED_CHANGE_TYPES" || "ADD_PAYER_CANDIDATE" || "REMOVE_PAYER_CANDIDATE" || "GRANT_CAN_RECEIVE_MODEL_OUTPUT" || "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" || "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" || "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT",
92
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "EDIT_AUTO_APPROVED_CHANGE_TYPES" || "ADD_PAYER_CANDIDATE" || "REMOVE_PAYER_CANDIDATE" || "GRANT_CAN_RECEIVE_MODEL_OUTPUT" || "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" || "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" || "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
93
93
  * // ],
94
94
  * // },
95
95
  * // ],
@@ -61,7 +61,7 @@ declare const GetCollaborationCommand_base: {
61
61
  * // jobLogStatus: "ENABLED" || "DISABLED",
62
62
  * // analyticsEngine: "SPARK" || "CLEAN_ROOMS_SQL",
63
63
  * // autoApprovedChangeTypes: [ // AutoApprovedChangeTypeList
64
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
64
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
65
65
  * // ],
66
66
  * // allowedResultRegions: [ // AllowedResultRegions
67
67
  * // "us-west-1" || "us-west-2" || "us-east-1" || "us-east-2" || "af-south-1" || "ap-east-1" || "ap-east-2" || "ap-south-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-southeast-5" || "ap-southeast-4" || "ap-southeast-7" || "ap-south-1" || "ap-northeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ca-central-1" || "ca-west-1" || "eu-south-1" || "eu-west-3" || "eu-south-2" || "eu-central-2" || "eu-central-1" || "eu-north-1" || "eu-west-1" || "eu-west-2" || "me-south-1" || "me-central-1" || "il-central-1" || "sa-east-1" || "mx-central-1",
@@ -51,7 +51,7 @@ declare const GetMembershipCommand_base: {
51
51
  * // updateTime: new Date("TIMESTAMP"), // required
52
52
  * // status: "STRING_VALUE", // required
53
53
  * // memberAbilities: [ // MemberAbilities // required
54
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
54
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
55
55
  * // ],
56
56
  * // mlMemberAbilities: { // MLMemberAbilities
57
57
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -0,0 +1,99 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { ListAnalysisLogExportsInput, ListAnalysisLogExportsOutput } from "../models/models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link ListAnalysisLogExportsCommand}.
11
+ */
12
+ export interface ListAnalysisLogExportsCommandInput extends ListAnalysisLogExportsInput {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link ListAnalysisLogExportsCommand}.
18
+ */
19
+ export interface ListAnalysisLogExportsCommandOutput extends ListAnalysisLogExportsOutput, __MetadataBearer {
20
+ }
21
+ declare const ListAnalysisLogExportsCommand_base: {
22
+ new (input: ListAnalysisLogExportsCommandInput): import("@smithy/core/client").CommandImpl<ListAnalysisLogExportsCommandInput, ListAnalysisLogExportsCommandOutput, import("..").CleanRoomsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListAnalysisLogExportsCommandInput): import("@smithy/core/client").CommandImpl<ListAnalysisLogExportsCommandInput, ListAnalysisLogExportsCommandOutput, import("..").CleanRoomsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Lists analysis log exports, sorted by the most recent export. Results are paginated. Use the <code>nextToken</code> parameter to retrieve additional results.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { CleanRoomsClient, ListAnalysisLogExportsCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
32
+ * // const { CleanRoomsClient, ListAnalysisLogExportsCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
33
+ * // import type { CleanRoomsClientConfig } from "@aws-sdk/client-cleanrooms";
34
+ * const config = {}; // type is CleanRoomsClientConfig
35
+ * const client = new CleanRoomsClient(config);
36
+ * const input = { // ListAnalysisLogExportsInput
37
+ * membershipIdentifier: "STRING_VALUE", // required
38
+ * analysisIdentifier: "STRING_VALUE",
39
+ * status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
40
+ * nextToken: "STRING_VALUE",
41
+ * maxResults: Number("int"),
42
+ * };
43
+ * const command = new ListAnalysisLogExportsCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // ListAnalysisLogExportsOutput
46
+ * // nextToken: "STRING_VALUE",
47
+ * // analysisLogExports: [ // AnalysisLogExportSummaryList // required
48
+ * // { // AnalysisLogExportSummary
49
+ * // analysisLogExportId: "STRING_VALUE", // required
50
+ * // analysisId: "STRING_VALUE", // required
51
+ * // analysisType: "PROTECTED_QUERY", // required
52
+ * // status: "IN_PROGRESS" || "SUCCESS" || "FAILED", // required
53
+ * // createTime: new Date("TIMESTAMP"), // required
54
+ * // },
55
+ * // ],
56
+ * // };
57
+ *
58
+ * ```
59
+ *
60
+ * @param ListAnalysisLogExportsCommandInput - {@link ListAnalysisLogExportsCommandInput}
61
+ * @returns {@link ListAnalysisLogExportsCommandOutput}
62
+ * @see {@link ListAnalysisLogExportsCommandInput} for command's `input` shape.
63
+ * @see {@link ListAnalysisLogExportsCommandOutput} for command's `response` shape.
64
+ * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
65
+ *
66
+ * @throws {@link AccessDeniedException} (client fault)
67
+ * <p>Caller does not have sufficient access to perform this action.</p>
68
+ *
69
+ * @throws {@link InternalServerException} (server fault)
70
+ * <p>Unexpected error during processing of request.</p>
71
+ *
72
+ * @throws {@link ResourceNotFoundException} (client fault)
73
+ * <p>Request references a resource which does not exist.</p>
74
+ *
75
+ * @throws {@link ThrottlingException} (client fault)
76
+ * <p>Request was denied due to request throttling.</p>
77
+ *
78
+ * @throws {@link ValidationException} (client fault)
79
+ * <p>The input fails to satisfy the specified constraints.</p>
80
+ *
81
+ * @throws {@link CleanRoomsServiceException}
82
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
83
+ *
84
+ *
85
+ * @public
86
+ */
87
+ export declare class ListAnalysisLogExportsCommand extends ListAnalysisLogExportsCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: ListAnalysisLogExportsInput;
92
+ output: ListAnalysisLogExportsOutput;
93
+ };
94
+ sdk: {
95
+ input: ListAnalysisLogExportsCommandInput;
96
+ output: ListAnalysisLogExportsCommandOutput;
97
+ };
98
+ };
99
+ }
@@ -57,7 +57,7 @@ declare const ListCollaborationChangeRequestsCommand_base: {
57
57
  * // member: { // MemberChangeSpecification
58
58
  * // accountId: "STRING_VALUE", // required
59
59
  * // memberAbilities: [ // MemberAbilities // required
60
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
60
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
61
61
  * // ],
62
62
  * // mlMemberAbilities: { // MLMemberAbilities
63
63
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -87,12 +87,12 @@ declare const ListCollaborationChangeRequestsCommand_base: {
87
87
  * // },
88
88
  * // collaboration: { // CollaborationChangeSpecification
89
89
  * // autoApprovedChangeTypes: [ // AutoApprovedChangeTypeList
90
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY",
90
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
91
91
  * // ],
92
92
  * // },
93
93
  * // },
94
94
  * // types: [ // ChangeTypeList // required
95
- * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "EDIT_AUTO_APPROVED_CHANGE_TYPES" || "ADD_PAYER_CANDIDATE" || "REMOVE_PAYER_CANDIDATE" || "GRANT_CAN_RECEIVE_MODEL_OUTPUT" || "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" || "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" || "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT",
95
+ * // "ADD_MEMBER" || "GRANT_RECEIVE_RESULTS_ABILITY" || "REVOKE_RECEIVE_RESULTS_ABILITY" || "EDIT_AUTO_APPROVED_CHANGE_TYPES" || "ADD_PAYER_CANDIDATE" || "REMOVE_PAYER_CANDIDATE" || "GRANT_CAN_RECEIVE_MODEL_OUTPUT" || "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT" || "REVOKE_CAN_RECEIVE_MODEL_OUTPUT" || "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT" || "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY" || "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
96
96
  * // ],
97
97
  * // },
98
98
  * // ],
@@ -48,7 +48,7 @@ declare const ListMembersCommand_base: {
48
48
  * // status: "STRING_VALUE", // required
49
49
  * // displayName: "STRING_VALUE", // required
50
50
  * // abilities: [ // MemberAbilities // required
51
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
51
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
52
52
  * // ],
53
53
  * // mlAbilities: { // MLMemberAbilities
54
54
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -55,7 +55,7 @@ declare const ListMembershipsCommand_base: {
55
55
  * // updateTime: new Date("TIMESTAMP"), // required
56
56
  * // status: "STRING_VALUE", // required
57
57
  * // memberAbilities: [ // MemberAbilities // required
58
- * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB",
58
+ * // "CAN_QUERY" || "CAN_RECEIVE_RESULTS" || "CAN_RUN_JOB" || "CAN_EXPORT_QUERY_ANALYSIS_LOG",
59
59
  * // ],
60
60
  * // mlMemberAbilities: { // MLMemberAbilities
61
61
  * // customMLMemberAbilities: [ // CustomMLMemberAbilities // required
@@ -1,5 +1,5 @@
1
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import type { PopulateIntermediateTableInput, PopulateIntermediateTableOutput } from "../models/models_0";
2
+ import type { PopulateIntermediateTableInput, PopulateIntermediateTableOutput } from "../models/models_1";
3
3
  /**
4
4
  * @public
5
5
  */
@@ -24,7 +24,7 @@ declare const PopulateIntermediateTableCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <p>Executes the stored query of an intermediate table to materialize data into managed storage. With this operation, you can perform initial population and subsequent refreshes. Each call creates a new version. The returned analysis ID can be tracked using <code>GetProtectedQuery</code>. Only the intermediate table owner can call this operation.</p>
27
+ * <p>Runs the stored query of an intermediate table and makes the results available for querying. Each call creates a new version. Use <code>GetProtectedQuery</code> with the returned analysis ID to track progress. Only the intermediate table owner can call this operation.</p>
28
28
  * @example
29
29
  * Use a bare-bones client and the command you need to make an API call.
30
30
  * ```javascript