@aws-sdk/client-cleanrooms 3.325.0 → 3.327.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 +40 -0
  2. package/dist-types/commands/CreateCollaborationCommand.d.ts +25 -0
  3. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +51 -0
  4. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +18 -0
  5. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +26 -0
  6. package/dist-types/commands/CreateMembershipCommand.d.ts +21 -0
  7. package/dist-types/commands/DeleteCollaborationCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteMemberCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteMembershipCommand.d.ts +4 -0
  13. package/dist-types/commands/GetCollaborationCommand.d.ts +25 -0
  14. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +51 -0
  15. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +18 -0
  16. package/dist-types/commands/GetConfiguredTableCommand.d.ts +26 -0
  17. package/dist-types/commands/GetMembershipCommand.d.ts +21 -0
  18. package/dist-types/commands/GetProtectedQueryCommand.d.ts +38 -0
  19. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +51 -0
  20. package/dist-types/commands/GetSchemaCommand.d.ts +31 -0
  21. package/dist-types/commands/ListCollaborationsCommand.d.ts +20 -0
  22. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +18 -0
  23. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +19 -0
  24. package/dist-types/commands/ListMembersCommand.d.ts +20 -0
  25. package/dist-types/commands/ListMembershipsCommand.d.ts +23 -0
  26. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +15 -0
  27. package/dist-types/commands/ListSchemasCommand.d.ts +21 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  29. package/dist-types/commands/StartProtectedQueryCommand.d.ts +38 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  32. package/dist-types/commands/UpdateCollaborationCommand.d.ts +25 -0
  33. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +51 -0
  34. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +18 -0
  35. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +26 -0
  36. package/dist-types/commands/UpdateMembershipCommand.d.ts +21 -0
  37. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +38 -0
  38. package/package.json +7 -7
@@ -34,6 +34,44 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
34
34
  * };
35
35
  * const command = new BatchGetSchemaCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // BatchGetSchemaOutput
38
+ * // schemas: [ // SchemaList // required
39
+ * // { // Schema
40
+ * // columns: [ // ColumnList // required
41
+ * // { // Column
42
+ * // name: "STRING_VALUE", // required
43
+ * // type: "STRING_VALUE", // required
44
+ * // },
45
+ * // ],
46
+ * // partitionKeys: [ // required
47
+ * // {
48
+ * // name: "STRING_VALUE", // required
49
+ * // type: "STRING_VALUE", // required
50
+ * // },
51
+ * // ],
52
+ * // analysisRuleTypes: [ // AnalysisRuleTypeList // required
53
+ * // "AGGREGATION" || "LIST",
54
+ * // ],
55
+ * // analysisMethod: "STRING_VALUE",
56
+ * // creatorAccountId: "STRING_VALUE", // required
57
+ * // name: "STRING_VALUE", // required
58
+ * // collaborationId: "STRING_VALUE", // required
59
+ * // collaborationArn: "STRING_VALUE", // required
60
+ * // description: "STRING_VALUE", // required
61
+ * // createTime: new Date("TIMESTAMP"), // required
62
+ * // updateTime: new Date("TIMESTAMP"), // required
63
+ * // type: "STRING_VALUE", // required
64
+ * // },
65
+ * // ],
66
+ * // errors: [ // BatchGetSchemaErrorList // required
67
+ * // { // BatchGetSchemaError
68
+ * // name: "STRING_VALUE", // required
69
+ * // code: "STRING_VALUE", // required
70
+ * // message: "STRING_VALUE", // required
71
+ * // },
72
+ * // ],
73
+ * // };
74
+ *
37
75
  * ```
38
76
  *
39
77
  * @param BatchGetSchemaCommandInput - {@link BatchGetSchemaCommandInput}
@@ -57,6 +95,8 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
57
95
  * @throws {@link ValidationException} (client fault)
58
96
  * <p>The input fails to satisfy the specified constraints.</p>
59
97
  *
98
+ * @throws {@link CleanRoomsServiceException}
99
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
60
100
  *
61
101
  */
62
102
  export declare class BatchGetSchemaCommand extends $Command<BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -55,6 +55,29 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
55
55
  * };
56
56
  * const command = new CreateCollaborationCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // CreateCollaborationOutput
59
+ * // collaboration: { // Collaboration
60
+ * // id: "STRING_VALUE", // required
61
+ * // arn: "STRING_VALUE", // required
62
+ * // name: "STRING_VALUE", // required
63
+ * // description: "STRING_VALUE",
64
+ * // creatorAccountId: "STRING_VALUE", // required
65
+ * // creatorDisplayName: "STRING_VALUE", // required
66
+ * // createTime: new Date("TIMESTAMP"), // required
67
+ * // updateTime: new Date("TIMESTAMP"), // required
68
+ * // memberStatus: "STRING_VALUE", // required
69
+ * // membershipId: "STRING_VALUE",
70
+ * // membershipArn: "STRING_VALUE",
71
+ * // dataEncryptionMetadata: { // DataEncryptionMetadata
72
+ * // allowCleartext: true || false, // required
73
+ * // allowDuplicates: true || false, // required
74
+ * // allowJoinsOnColumnsWithDifferentNames: true || false, // required
75
+ * // preserveNulls: true || false, // required
76
+ * // },
77
+ * // queryLogStatus: "STRING_VALUE", // required
78
+ * // },
79
+ * // };
80
+ *
58
81
  * ```
59
82
  *
60
83
  * @param CreateCollaborationCommandInput - {@link CreateCollaborationCommandInput}
@@ -78,6 +101,8 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
78
101
  * @throws {@link ValidationException} (client fault)
79
102
  * <p>The input fails to satisfy the specified constraints.</p>
80
103
  *
104
+ * @throws {@link CleanRoomsServiceException}
105
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
81
106
  *
82
107
  */
83
108
  export declare class CreateCollaborationCommand extends $Command<CreateCollaborationCommandInput, CreateCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -72,6 +72,55 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
72
72
  * };
73
73
  * const command = new CreateConfiguredTableAnalysisRuleCommand(input);
74
74
  * const response = await client.send(command);
75
+ * // { // CreateConfiguredTableAnalysisRuleOutput
76
+ * // analysisRule: { // ConfiguredTableAnalysisRule
77
+ * // configuredTableId: "STRING_VALUE", // required
78
+ * // configuredTableArn: "STRING_VALUE", // required
79
+ * // policy: { // ConfiguredTableAnalysisRulePolicy Union: only one key present
80
+ * // v1: { // ConfiguredTableAnalysisRulePolicyV1 Union: only one key present
81
+ * // list: { // AnalysisRuleList
82
+ * // joinColumns: [ // AnalysisRuleColumnList // required
83
+ * // "STRING_VALUE",
84
+ * // ],
85
+ * // listColumns: [ // required
86
+ * // "STRING_VALUE",
87
+ * // ],
88
+ * // },
89
+ * // aggregation: { // AnalysisRuleAggregation
90
+ * // aggregateColumns: [ // AggregateColumnList // required
91
+ * // { // AggregateColumn
92
+ * // columnNames: [ // AnalysisRuleColumnNameList // required
93
+ * // "STRING_VALUE",
94
+ * // ],
95
+ * // function: "STRING_VALUE", // required
96
+ * // },
97
+ * // ],
98
+ * // joinColumns: [ // required
99
+ * // "STRING_VALUE",
100
+ * // ],
101
+ * // joinRequired: "STRING_VALUE",
102
+ * // dimensionColumns: [ // required
103
+ * // "STRING_VALUE",
104
+ * // ],
105
+ * // scalarFunctions: [ // ScalarFunctionsList // required
106
+ * // "STRING_VALUE",
107
+ * // ],
108
+ * // outputConstraints: [ // AggregationConstraints // required
109
+ * // { // AggregationConstraint
110
+ * // columnName: "STRING_VALUE", // required
111
+ * // minimum: Number("int"), // required
112
+ * // type: "STRING_VALUE", // required
113
+ * // },
114
+ * // ],
115
+ * // },
116
+ * // },
117
+ * // },
118
+ * // type: "AGGREGATION" || "LIST", // required
119
+ * // createTime: new Date("TIMESTAMP"), // required
120
+ * // updateTime: new Date("TIMESTAMP"), // required
121
+ * // },
122
+ * // };
123
+ *
75
124
  * ```
76
125
  *
77
126
  * @param CreateConfiguredTableAnalysisRuleCommandInput - {@link CreateConfiguredTableAnalysisRuleCommandInput}
@@ -98,6 +147,8 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
98
147
  * @throws {@link ValidationException} (client fault)
99
148
  * <p>The input fails to satisfy the specified constraints.</p>
100
149
  *
150
+ * @throws {@link CleanRoomsServiceException}
151
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
101
152
  *
102
153
  */
103
154
  export declare class CreateConfiguredTableAnalysisRuleCommand extends $Command<CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -39,6 +39,22 @@ export interface CreateConfiguredTableAssociationCommandOutput extends CreateCon
39
39
  * };
40
40
  * const command = new CreateConfiguredTableAssociationCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // CreateConfiguredTableAssociationOutput
43
+ * // configuredTableAssociation: { // ConfiguredTableAssociation
44
+ * // arn: "STRING_VALUE", // required
45
+ * // id: "STRING_VALUE", // required
46
+ * // configuredTableId: "STRING_VALUE", // required
47
+ * // configuredTableArn: "STRING_VALUE", // required
48
+ * // membershipId: "STRING_VALUE", // required
49
+ * // membershipArn: "STRING_VALUE", // required
50
+ * // roleArn: "STRING_VALUE", // required
51
+ * // name: "STRING_VALUE", // required
52
+ * // description: "STRING_VALUE",
53
+ * // createTime: new Date("TIMESTAMP"), // required
54
+ * // updateTime: new Date("TIMESTAMP"), // required
55
+ * // },
56
+ * // };
57
+ *
42
58
  * ```
43
59
  *
44
60
  * @param CreateConfiguredTableAssociationCommandInput - {@link CreateConfiguredTableAssociationCommandInput}
@@ -68,6 +84,8 @@ export interface CreateConfiguredTableAssociationCommandOutput extends CreateCon
68
84
  * @throws {@link ValidationException} (client fault)
69
85
  * <p>The input fails to satisfy the specified constraints.</p>
70
86
  *
87
+ * @throws {@link CleanRoomsServiceException}
88
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
71
89
  *
72
90
  */
73
91
  export declare class CreateConfiguredTableAssociationCommand extends $Command<CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -45,6 +45,30 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
45
45
  * };
46
46
  * const command = new CreateConfiguredTableCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // CreateConfiguredTableOutput
49
+ * // configuredTable: { // ConfiguredTable
50
+ * // id: "STRING_VALUE", // required
51
+ * // arn: "STRING_VALUE", // required
52
+ * // name: "STRING_VALUE", // required
53
+ * // description: "STRING_VALUE",
54
+ * // tableReference: { // TableReference Union: only one key present
55
+ * // glue: { // GlueTableReference
56
+ * // tableName: "STRING_VALUE", // required
57
+ * // databaseName: "STRING_VALUE", // required
58
+ * // },
59
+ * // },
60
+ * // createTime: new Date("TIMESTAMP"), // required
61
+ * // updateTime: new Date("TIMESTAMP"), // required
62
+ * // analysisRuleTypes: [ // ConfiguredTableAnalysisRuleTypeList // required
63
+ * // "AGGREGATION" || "LIST",
64
+ * // ],
65
+ * // analysisMethod: "STRING_VALUE", // required
66
+ * // allowedColumns: [ // AllowedColumnList // required
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // },
70
+ * // };
71
+ *
48
72
  * ```
49
73
  *
50
74
  * @param CreateConfiguredTableCommandInput - {@link CreateConfiguredTableCommandInput}
@@ -74,6 +98,8 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
74
98
  * @throws {@link ValidationException} (client fault)
75
99
  * <p>The input fails to satisfy the specified constraints.</p>
76
100
  *
101
+ * @throws {@link CleanRoomsServiceException}
102
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
77
103
  *
78
104
  */
79
105
  export declare class CreateConfiguredTableCommand extends $Command<CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -36,6 +36,25 @@ export interface CreateMembershipCommandOutput extends CreateMembershipOutput, _
36
36
  * };
37
37
  * const command = new CreateMembershipCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // CreateMembershipOutput
40
+ * // membership: { // Membership
41
+ * // id: "STRING_VALUE", // required
42
+ * // arn: "STRING_VALUE", // required
43
+ * // collaborationArn: "STRING_VALUE", // required
44
+ * // collaborationId: "STRING_VALUE", // required
45
+ * // collaborationCreatorAccountId: "STRING_VALUE", // required
46
+ * // collaborationCreatorDisplayName: "STRING_VALUE", // required
47
+ * // collaborationName: "STRING_VALUE", // required
48
+ * // createTime: new Date("TIMESTAMP"), // required
49
+ * // updateTime: new Date("TIMESTAMP"), // required
50
+ * // status: "STRING_VALUE", // required
51
+ * // memberAbilities: [ // MemberAbilities // required
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // queryLogStatus: "STRING_VALUE", // required
55
+ * // },
56
+ * // };
57
+ *
39
58
  * ```
40
59
  *
41
60
  * @param CreateMembershipCommandInput - {@link CreateMembershipCommandInput}
@@ -65,6 +84,8 @@ export interface CreateMembershipCommandOutput extends CreateMembershipOutput, _
65
84
  * @throws {@link ValidationException} (client fault)
66
85
  * <p>The input fails to satisfy the specified constraints.</p>
67
86
  *
87
+ * @throws {@link CleanRoomsServiceException}
88
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
68
89
  *
69
90
  */
70
91
  export declare class CreateMembershipCommand extends $Command<CreateMembershipCommandInput, CreateMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteCollaborationCommandOutput extends DeleteCollaborationOut
31
31
  * };
32
32
  * const command = new DeleteCollaborationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteCollaborationCommandInput - {@link DeleteCollaborationCommandInput}
@@ -51,6 +53,8 @@ export interface DeleteCollaborationCommandOutput extends DeleteCollaborationOut
51
53
  * @throws {@link ValidationException} (client fault)
52
54
  * <p>The input fails to satisfy the specified constraints.</p>
53
55
  *
56
+ * @throws {@link CleanRoomsServiceException}
57
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
54
58
  *
55
59
  */
56
60
  export declare class DeleteCollaborationCommand extends $Command<DeleteCollaborationCommandInput, DeleteCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteConfiguredTableAnalysisRuleCommandOutput extends DeleteCo
32
32
  * };
33
33
  * const command = new DeleteConfiguredTableAnalysisRuleCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteConfiguredTableAnalysisRuleCommandInput - {@link DeleteConfiguredTableAnalysisRuleCommandInput}
@@ -58,6 +60,8 @@ export interface DeleteConfiguredTableAnalysisRuleCommandOutput extends DeleteCo
58
60
  * @throws {@link ValidationException} (client fault)
59
61
  * <p>The input fails to satisfy the specified constraints.</p>
60
62
  *
63
+ * @throws {@link CleanRoomsServiceException}
64
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
61
65
  *
62
66
  */
63
67
  export declare class DeleteConfiguredTableAnalysisRuleCommand extends $Command<DeleteConfiguredTableAnalysisRuleCommandInput, DeleteConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteConfiguredTableAssociationCommandOutput extends DeleteCon
32
32
  * };
33
33
  * const command = new DeleteConfiguredTableAssociationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteConfiguredTableAssociationCommandInput - {@link DeleteConfiguredTableAssociationCommandInput}
@@ -58,6 +60,8 @@ export interface DeleteConfiguredTableAssociationCommandOutput extends DeleteCon
58
60
  * @throws {@link ValidationException} (client fault)
59
61
  * <p>The input fails to satisfy the specified constraints.</p>
60
62
  *
63
+ * @throws {@link CleanRoomsServiceException}
64
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
61
65
  *
62
66
  */
63
67
  export declare class DeleteConfiguredTableAssociationCommand extends $Command<DeleteConfiguredTableAssociationCommandInput, DeleteConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteConfiguredTableCommandOutput extends DeleteConfiguredTabl
31
31
  * };
32
32
  * const command = new DeleteConfiguredTableCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteConfiguredTableCommandInput - {@link DeleteConfiguredTableCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteConfiguredTableCommandOutput extends DeleteConfiguredTabl
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The input fails to satisfy the specified constraints.</p>
59
61
  *
62
+ * @throws {@link CleanRoomsServiceException}
63
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteConfiguredTableCommand extends $Command<DeleteConfiguredTableCommandInput, DeleteConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
34
34
  * };
35
35
  * const command = new DeleteMemberCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteMemberCommandInput - {@link DeleteMemberCommandInput}
@@ -60,6 +62,8 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
60
62
  * @throws {@link ValidationException} (client fault)
61
63
  * <p>The input fails to satisfy the specified constraints.</p>
62
64
  *
65
+ * @throws {@link CleanRoomsServiceException}
66
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
63
67
  *
64
68
  */
65
69
  export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteMembershipCommandOutput extends DeleteMembershipOutput, _
31
31
  * };
32
32
  * const command = new DeleteMembershipCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteMembershipCommandInput - {@link DeleteMembershipCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteMembershipCommandOutput extends DeleteMembershipOutput, _
57
59
  * @throws {@link ValidationException} (client fault)
58
60
  * <p>The input fails to satisfy the specified constraints.</p>
59
61
  *
62
+ * @throws {@link CleanRoomsServiceException}
63
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteMembershipCommand extends $Command<DeleteMembershipCommandInput, DeleteMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -31,6 +31,29 @@ export interface GetCollaborationCommandOutput extends GetCollaborationOutput, _
31
31
  * };
32
32
  * const command = new GetCollaborationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetCollaborationOutput
35
+ * // collaboration: { // Collaboration
36
+ * // id: "STRING_VALUE", // required
37
+ * // arn: "STRING_VALUE", // required
38
+ * // name: "STRING_VALUE", // required
39
+ * // description: "STRING_VALUE",
40
+ * // creatorAccountId: "STRING_VALUE", // required
41
+ * // creatorDisplayName: "STRING_VALUE", // required
42
+ * // createTime: new Date("TIMESTAMP"), // required
43
+ * // updateTime: new Date("TIMESTAMP"), // required
44
+ * // memberStatus: "STRING_VALUE", // required
45
+ * // membershipId: "STRING_VALUE",
46
+ * // membershipArn: "STRING_VALUE",
47
+ * // dataEncryptionMetadata: { // DataEncryptionMetadata
48
+ * // allowCleartext: true || false, // required
49
+ * // allowDuplicates: true || false, // required
50
+ * // allowJoinsOnColumnsWithDifferentNames: true || false, // required
51
+ * // preserveNulls: true || false, // required
52
+ * // },
53
+ * // queryLogStatus: "STRING_VALUE", // required
54
+ * // },
55
+ * // };
56
+ *
34
57
  * ```
35
58
  *
36
59
  * @param GetCollaborationCommandInput - {@link GetCollaborationCommandInput}
@@ -51,6 +74,8 @@ export interface GetCollaborationCommandOutput extends GetCollaborationOutput, _
51
74
  * @throws {@link ValidationException} (client fault)
52
75
  * <p>The input fails to satisfy the specified constraints.</p>
53
76
  *
77
+ * @throws {@link CleanRoomsServiceException}
78
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
54
79
  *
55
80
  */
56
81
  export declare class GetCollaborationCommand extends $Command<GetCollaborationCommandInput, GetCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -32,6 +32,55 @@ export interface GetConfiguredTableAnalysisRuleCommandOutput extends GetConfigur
32
32
  * };
33
33
  * const command = new GetConfiguredTableAnalysisRuleCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetConfiguredTableAnalysisRuleOutput
36
+ * // analysisRule: { // ConfiguredTableAnalysisRule
37
+ * // configuredTableId: "STRING_VALUE", // required
38
+ * // configuredTableArn: "STRING_VALUE", // required
39
+ * // policy: { // ConfiguredTableAnalysisRulePolicy Union: only one key present
40
+ * // v1: { // ConfiguredTableAnalysisRulePolicyV1 Union: only one key present
41
+ * // list: { // AnalysisRuleList
42
+ * // joinColumns: [ // AnalysisRuleColumnList // required
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // listColumns: [ // required
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // },
49
+ * // aggregation: { // AnalysisRuleAggregation
50
+ * // aggregateColumns: [ // AggregateColumnList // required
51
+ * // { // AggregateColumn
52
+ * // columnNames: [ // AnalysisRuleColumnNameList // required
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // function: "STRING_VALUE", // required
56
+ * // },
57
+ * // ],
58
+ * // joinColumns: [ // required
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // joinRequired: "STRING_VALUE",
62
+ * // dimensionColumns: [ // required
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // scalarFunctions: [ // ScalarFunctionsList // required
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // outputConstraints: [ // AggregationConstraints // required
69
+ * // { // AggregationConstraint
70
+ * // columnName: "STRING_VALUE", // required
71
+ * // minimum: Number("int"), // required
72
+ * // type: "STRING_VALUE", // required
73
+ * // },
74
+ * // ],
75
+ * // },
76
+ * // },
77
+ * // },
78
+ * // type: "AGGREGATION" || "LIST", // required
79
+ * // createTime: new Date("TIMESTAMP"), // required
80
+ * // updateTime: new Date("TIMESTAMP"), // required
81
+ * // },
82
+ * // };
83
+ *
35
84
  * ```
36
85
  *
37
86
  * @param GetConfiguredTableAnalysisRuleCommandInput - {@link GetConfiguredTableAnalysisRuleCommandInput}
@@ -55,6 +104,8 @@ export interface GetConfiguredTableAnalysisRuleCommandOutput extends GetConfigur
55
104
  * @throws {@link ValidationException} (client fault)
56
105
  * <p>The input fails to satisfy the specified constraints.</p>
57
106
  *
107
+ * @throws {@link CleanRoomsServiceException}
108
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
58
109
  *
59
110
  */
60
111
  export declare class GetConfiguredTableAnalysisRuleCommand extends $Command<GetConfiguredTableAnalysisRuleCommandInput, GetConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -32,6 +32,22 @@ export interface GetConfiguredTableAssociationCommandOutput extends GetConfigure
32
32
  * };
33
33
  * const command = new GetConfiguredTableAssociationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetConfiguredTableAssociationOutput
36
+ * // configuredTableAssociation: { // ConfiguredTableAssociation
37
+ * // arn: "STRING_VALUE", // required
38
+ * // id: "STRING_VALUE", // required
39
+ * // configuredTableId: "STRING_VALUE", // required
40
+ * // configuredTableArn: "STRING_VALUE", // required
41
+ * // membershipId: "STRING_VALUE", // required
42
+ * // membershipArn: "STRING_VALUE", // required
43
+ * // roleArn: "STRING_VALUE", // required
44
+ * // name: "STRING_VALUE", // required
45
+ * // description: "STRING_VALUE",
46
+ * // createTime: new Date("TIMESTAMP"), // required
47
+ * // updateTime: new Date("TIMESTAMP"), // required
48
+ * // },
49
+ * // };
50
+ *
35
51
  * ```
36
52
  *
37
53
  * @param GetConfiguredTableAssociationCommandInput - {@link GetConfiguredTableAssociationCommandInput}
@@ -55,6 +71,8 @@ export interface GetConfiguredTableAssociationCommandOutput extends GetConfigure
55
71
  * @throws {@link ValidationException} (client fault)
56
72
  * <p>The input fails to satisfy the specified constraints.</p>
57
73
  *
74
+ * @throws {@link CleanRoomsServiceException}
75
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
58
76
  *
59
77
  */
60
78
  export declare class GetConfiguredTableAssociationCommand extends $Command<GetConfiguredTableAssociationCommandInput, GetConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -31,6 +31,30 @@ export interface GetConfiguredTableCommandOutput extends GetConfiguredTableOutpu
31
31
  * };
32
32
  * const command = new GetConfiguredTableCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetConfiguredTableOutput
35
+ * // configuredTable: { // ConfiguredTable
36
+ * // id: "STRING_VALUE", // required
37
+ * // arn: "STRING_VALUE", // required
38
+ * // name: "STRING_VALUE", // required
39
+ * // description: "STRING_VALUE",
40
+ * // tableReference: { // TableReference Union: only one key present
41
+ * // glue: { // GlueTableReference
42
+ * // tableName: "STRING_VALUE", // required
43
+ * // databaseName: "STRING_VALUE", // required
44
+ * // },
45
+ * // },
46
+ * // createTime: new Date("TIMESTAMP"), // required
47
+ * // updateTime: new Date("TIMESTAMP"), // required
48
+ * // analysisRuleTypes: [ // ConfiguredTableAnalysisRuleTypeList // required
49
+ * // "AGGREGATION" || "LIST",
50
+ * // ],
51
+ * // analysisMethod: "STRING_VALUE", // required
52
+ * // allowedColumns: [ // AllowedColumnList // required
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // },
56
+ * // };
57
+ *
34
58
  * ```
35
59
  *
36
60
  * @param GetConfiguredTableCommandInput - {@link GetConfiguredTableCommandInput}
@@ -54,6 +78,8 @@ export interface GetConfiguredTableCommandOutput extends GetConfiguredTableOutpu
54
78
  * @throws {@link ValidationException} (client fault)
55
79
  * <p>The input fails to satisfy the specified constraints.</p>
56
80
  *
81
+ * @throws {@link CleanRoomsServiceException}
82
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
57
83
  *
58
84
  */
59
85
  export declare class GetConfiguredTableCommand extends $Command<GetConfiguredTableCommandInput, GetConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -31,6 +31,25 @@ export interface GetMembershipCommandOutput extends GetMembershipOutput, __Metad
31
31
  * };
32
32
  * const command = new GetMembershipCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetMembershipOutput
35
+ * // membership: { // Membership
36
+ * // id: "STRING_VALUE", // required
37
+ * // arn: "STRING_VALUE", // required
38
+ * // collaborationArn: "STRING_VALUE", // required
39
+ * // collaborationId: "STRING_VALUE", // required
40
+ * // collaborationCreatorAccountId: "STRING_VALUE", // required
41
+ * // collaborationCreatorDisplayName: "STRING_VALUE", // required
42
+ * // collaborationName: "STRING_VALUE", // required
43
+ * // createTime: new Date("TIMESTAMP"), // required
44
+ * // updateTime: new Date("TIMESTAMP"), // required
45
+ * // status: "STRING_VALUE", // required
46
+ * // memberAbilities: [ // MemberAbilities // required
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // queryLogStatus: "STRING_VALUE", // required
50
+ * // },
51
+ * // };
52
+ *
34
53
  * ```
35
54
  *
36
55
  * @param GetMembershipCommandInput - {@link GetMembershipCommandInput}
@@ -54,6 +73,8 @@ export interface GetMembershipCommandOutput extends GetMembershipOutput, __Metad
54
73
  * @throws {@link ValidationException} (client fault)
55
74
  * <p>The input fails to satisfy the specified constraints.</p>
56
75
  *
76
+ * @throws {@link CleanRoomsServiceException}
77
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
57
78
  *
58
79
  */
59
80
  export declare class GetMembershipCommand extends $Command<GetMembershipCommandInput, GetMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
@@ -32,6 +32,42 @@ export interface GetProtectedQueryCommandOutput extends GetProtectedQueryOutput,
32
32
  * };
33
33
  * const command = new GetProtectedQueryCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetProtectedQueryOutput
36
+ * // protectedQuery: { // ProtectedQuery
37
+ * // id: "STRING_VALUE", // required
38
+ * // membershipId: "STRING_VALUE", // required
39
+ * // membershipArn: "STRING_VALUE", // required
40
+ * // createTime: new Date("TIMESTAMP"), // required
41
+ * // sqlParameters: { // ProtectedQuerySQLParameters
42
+ * // queryString: "STRING_VALUE", // required
43
+ * // },
44
+ * // status: "STRING_VALUE", // required
45
+ * // resultConfiguration: { // ProtectedQueryResultConfiguration
46
+ * // outputConfiguration: { // ProtectedQueryOutputConfiguration Union: only one key present
47
+ * // s3: { // ProtectedQueryS3OutputConfiguration
48
+ * // resultFormat: "STRING_VALUE", // required
49
+ * // bucket: "STRING_VALUE", // required
50
+ * // keyPrefix: "STRING_VALUE",
51
+ * // },
52
+ * // },
53
+ * // },
54
+ * // statistics: { // ProtectedQueryStatistics
55
+ * // totalDurationInMillis: Number("long"),
56
+ * // },
57
+ * // result: { // ProtectedQueryResult
58
+ * // output: { // ProtectedQueryOutput Union: only one key present
59
+ * // s3: { // ProtectedQueryS3Output
60
+ * // location: "STRING_VALUE", // required
61
+ * // },
62
+ * // },
63
+ * // },
64
+ * // error: { // ProtectedQueryError
65
+ * // message: "STRING_VALUE", // required
66
+ * // code: "STRING_VALUE", // required
67
+ * // },
68
+ * // },
69
+ * // };
70
+ *
35
71
  * ```
36
72
  *
37
73
  * @param GetProtectedQueryCommandInput - {@link GetProtectedQueryCommandInput}
@@ -55,6 +91,8 @@ export interface GetProtectedQueryCommandOutput extends GetProtectedQueryOutput,
55
91
  * @throws {@link ValidationException} (client fault)
56
92
  * <p>The input fails to satisfy the specified constraints.</p>
57
93
  *
94
+ * @throws {@link CleanRoomsServiceException}
95
+ * <p>Base exception class for all service exceptions from CleanRooms service.</p>
58
96
  *
59
97
  */
60
98
  export declare class GetProtectedQueryCommand extends $Command<GetProtectedQueryCommandInput, GetProtectedQueryCommandOutput, CleanRoomsClientResolvedConfig> {