@aws-sdk/client-cleanrooms 3.321.1 → 3.326.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.
- package/dist-types/commands/BatchGetSchemaCommand.d.ts +40 -0
- package/dist-types/commands/CreateCollaborationCommand.d.ts +25 -0
- package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +51 -0
- package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +18 -0
- package/dist-types/commands/CreateConfiguredTableCommand.d.ts +26 -0
- package/dist-types/commands/CreateMembershipCommand.d.ts +21 -0
- package/dist-types/commands/DeleteCollaborationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMemberCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMembershipCommand.d.ts +4 -0
- package/dist-types/commands/GetCollaborationCommand.d.ts +25 -0
- package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +51 -0
- package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +18 -0
- package/dist-types/commands/GetConfiguredTableCommand.d.ts +26 -0
- package/dist-types/commands/GetMembershipCommand.d.ts +21 -0
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +38 -0
- package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +51 -0
- package/dist-types/commands/GetSchemaCommand.d.ts +31 -0
- package/dist-types/commands/ListCollaborationsCommand.d.ts +20 -0
- package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +18 -0
- package/dist-types/commands/ListConfiguredTablesCommand.d.ts +19 -0
- package/dist-types/commands/ListMembersCommand.d.ts +20 -0
- package/dist-types/commands/ListMembershipsCommand.d.ts +23 -0
- package/dist-types/commands/ListProtectedQueriesCommand.d.ts +15 -0
- package/dist-types/commands/ListSchemasCommand.d.ts +21 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/StartProtectedQueryCommand.d.ts +38 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCollaborationCommand.d.ts +25 -0
- package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +51 -0
- package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +18 -0
- package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +26 -0
- package/dist-types/commands/UpdateMembershipCommand.d.ts +21 -0
- package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +38 -0
- package/package.json +16 -16
|
@@ -33,6 +33,55 @@ export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetSchemaAnalysisRuleCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetSchemaAnalysisRuleOutput
|
|
37
|
+
* // analysisRule: { // AnalysisRule
|
|
38
|
+
* // collaborationId: "STRING_VALUE", // required
|
|
39
|
+
* // type: "AGGREGATION" || "LIST", // required
|
|
40
|
+
* // name: "STRING_VALUE", // required
|
|
41
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // policy: { // AnalysisRulePolicy Union: only one key present
|
|
44
|
+
* // v1: { // AnalysisRulePolicyV1 Union: only one key present
|
|
45
|
+
* // list: { // AnalysisRuleList
|
|
46
|
+
* // joinColumns: [ // AnalysisRuleColumnList // required
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // listColumns: [ // required
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // },
|
|
53
|
+
* // aggregation: { // AnalysisRuleAggregation
|
|
54
|
+
* // aggregateColumns: [ // AggregateColumnList // required
|
|
55
|
+
* // { // AggregateColumn
|
|
56
|
+
* // columnNames: [ // AnalysisRuleColumnNameList // required
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // function: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // joinColumns: [ // required
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // joinRequired: "STRING_VALUE",
|
|
66
|
+
* // dimensionColumns: [ // required
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // scalarFunctions: [ // ScalarFunctionsList // required
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // outputConstraints: [ // AggregationConstraints // required
|
|
73
|
+
* // { // AggregationConstraint
|
|
74
|
+
* // columnName: "STRING_VALUE", // required
|
|
75
|
+
* // minimum: Number("int"), // required
|
|
76
|
+
* // type: "STRING_VALUE", // required
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // },
|
|
82
|
+
* // },
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
36
85
|
* ```
|
|
37
86
|
*
|
|
38
87
|
* @param GetSchemaAnalysisRuleCommandInput - {@link GetSchemaAnalysisRuleCommandInput}
|
|
@@ -56,6 +105,8 @@ export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul
|
|
|
56
105
|
* @throws {@link ValidationException} (client fault)
|
|
57
106
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
58
107
|
*
|
|
108
|
+
* @throws {@link CleanRoomsServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
59
110
|
*
|
|
60
111
|
*/
|
|
61
112
|
export declare class GetSchemaAnalysisRuleCommand extends $Command<GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -32,6 +32,35 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSchemaCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSchemaOutput
|
|
36
|
+
* // schema: { // Schema
|
|
37
|
+
* // columns: [ // ColumnList // required
|
|
38
|
+
* // { // Column
|
|
39
|
+
* // name: "STRING_VALUE", // required
|
|
40
|
+
* // type: "STRING_VALUE", // required
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // partitionKeys: [ // required
|
|
44
|
+
* // {
|
|
45
|
+
* // name: "STRING_VALUE", // required
|
|
46
|
+
* // type: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // analysisRuleTypes: [ // AnalysisRuleTypeList // required
|
|
50
|
+
* // "AGGREGATION" || "LIST",
|
|
51
|
+
* // ],
|
|
52
|
+
* // analysisMethod: "STRING_VALUE",
|
|
53
|
+
* // creatorAccountId: "STRING_VALUE", // required
|
|
54
|
+
* // name: "STRING_VALUE", // required
|
|
55
|
+
* // collaborationId: "STRING_VALUE", // required
|
|
56
|
+
* // collaborationArn: "STRING_VALUE", // required
|
|
57
|
+
* // description: "STRING_VALUE", // required
|
|
58
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
59
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // type: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
35
64
|
* ```
|
|
36
65
|
*
|
|
37
66
|
* @param GetSchemaCommandInput - {@link GetSchemaCommandInput}
|
|
@@ -55,6 +84,8 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare
|
|
|
55
84
|
* @throws {@link ValidationException} (client fault)
|
|
56
85
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
57
86
|
*
|
|
87
|
+
* @throws {@link CleanRoomsServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
58
89
|
*
|
|
59
90
|
*/
|
|
60
91
|
export declare class GetSchemaCommand extends $Command<GetSchemaCommandInput, GetSchemaCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -33,6 +33,24 @@ export interface ListCollaborationsCommandOutput extends ListCollaborationsOutpu
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListCollaborationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListCollaborationsOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // collaborationList: [ // CollaborationSummaryList // required
|
|
39
|
+
* // { // CollaborationSummary
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // name: "STRING_VALUE", // required
|
|
43
|
+
* // creatorAccountId: "STRING_VALUE", // required
|
|
44
|
+
* // creatorDisplayName: "STRING_VALUE", // required
|
|
45
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // memberStatus: "STRING_VALUE", // required
|
|
48
|
+
* // membershipId: "STRING_VALUE",
|
|
49
|
+
* // membershipArn: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
36
54
|
* ```
|
|
37
55
|
*
|
|
38
56
|
* @param ListCollaborationsCommandInput - {@link ListCollaborationsCommandInput}
|
|
@@ -53,6 +71,8 @@ export interface ListCollaborationsCommandOutput extends ListCollaborationsOutpu
|
|
|
53
71
|
* @throws {@link ValidationException} (client fault)
|
|
54
72
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
55
73
|
*
|
|
74
|
+
* @throws {@link CleanRoomsServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
56
76
|
*
|
|
57
77
|
*/
|
|
58
78
|
export declare class ListCollaborationsCommand extends $Command<ListCollaborationsCommandInput, ListCollaborationsCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -33,6 +33,22 @@ export interface ListConfiguredTableAssociationsCommandOutput extends ListConfig
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListConfiguredTableAssociationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListConfiguredTableAssociationsOutput
|
|
37
|
+
* // configuredTableAssociationSummaries: [ // ConfiguredTableAssociationSummaryList // required
|
|
38
|
+
* // { // ConfiguredTableAssociationSummary
|
|
39
|
+
* // configuredTableId: "STRING_VALUE", // required
|
|
40
|
+
* // membershipId: "STRING_VALUE", // required
|
|
41
|
+
* // membershipArn: "STRING_VALUE", // required
|
|
42
|
+
* // name: "STRING_VALUE", // required
|
|
43
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // id: "STRING_VALUE", // required
|
|
46
|
+
* // arn: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // nextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
36
52
|
* ```
|
|
37
53
|
*
|
|
38
54
|
* @param ListConfiguredTableAssociationsCommandInput - {@link ListConfiguredTableAssociationsCommandInput}
|
|
@@ -56,6 +72,8 @@ export interface ListConfiguredTableAssociationsCommandOutput extends ListConfig
|
|
|
56
72
|
* @throws {@link ValidationException} (client fault)
|
|
57
73
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
58
74
|
*
|
|
75
|
+
* @throws {@link CleanRoomsServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
59
77
|
*
|
|
60
78
|
*/
|
|
61
79
|
export declare class ListConfiguredTableAssociationsCommand extends $Command<ListConfiguredTableAssociationsCommandInput, ListConfiguredTableAssociationsCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesO
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListConfiguredTablesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListConfiguredTablesOutput
|
|
36
|
+
* // configuredTableSummaries: [ // ConfiguredTableSummaryList // required
|
|
37
|
+
* // { // ConfiguredTableSummary
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // name: "STRING_VALUE", // required
|
|
41
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // analysisRuleTypes: [ // ConfiguredTableAnalysisRuleTypeList // required
|
|
44
|
+
* // "AGGREGATION" || "LIST",
|
|
45
|
+
* // ],
|
|
46
|
+
* // analysisMethod: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // nextToken: "STRING_VALUE",
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param ListConfiguredTablesCommandInput - {@link ListConfiguredTablesCommandInput}
|
|
@@ -52,6 +69,8 @@ export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesO
|
|
|
52
69
|
* @throws {@link ValidationException} (client fault)
|
|
53
70
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
54
71
|
*
|
|
72
|
+
* @throws {@link CleanRoomsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
55
74
|
*
|
|
56
75
|
*/
|
|
57
76
|
export declare class ListConfiguredTablesCommand extends $Command<ListConfiguredTablesCommandInput, ListConfiguredTablesCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -33,6 +33,24 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListMembersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListMembersOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // memberSummaries: [ // MemberSummaryList // required
|
|
39
|
+
* // { // MemberSummary
|
|
40
|
+
* // accountId: "STRING_VALUE", // required
|
|
41
|
+
* // status: "STRING_VALUE", // required
|
|
42
|
+
* // displayName: "STRING_VALUE", // required
|
|
43
|
+
* // abilities: [ // MemberAbilities // required
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // membershipId: "STRING_VALUE",
|
|
49
|
+
* // membershipArn: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
36
54
|
* ```
|
|
37
55
|
*
|
|
38
56
|
* @param ListMembersCommandInput - {@link ListMembersCommandInput}
|
|
@@ -56,6 +74,8 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
|
|
|
56
74
|
* @throws {@link ValidationException} (client fault)
|
|
57
75
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
58
76
|
*
|
|
77
|
+
* @throws {@link CleanRoomsServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
59
79
|
*
|
|
60
80
|
*/
|
|
61
81
|
export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -33,6 +33,27 @@ export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListMembershipsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListMembershipsOutput
|
|
37
|
+
* // nextToken: "STRING_VALUE",
|
|
38
|
+
* // membershipSummaries: [ // MembershipSummaryList // required
|
|
39
|
+
* // { // MembershipSummary
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // collaborationArn: "STRING_VALUE", // required
|
|
43
|
+
* // collaborationId: "STRING_VALUE", // required
|
|
44
|
+
* // collaborationCreatorAccountId: "STRING_VALUE", // required
|
|
45
|
+
* // collaborationCreatorDisplayName: "STRING_VALUE", // required
|
|
46
|
+
* // collaborationName: "STRING_VALUE", // required
|
|
47
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // status: "STRING_VALUE", // required
|
|
50
|
+
* // memberAbilities: [ // MemberAbilities // required
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
36
57
|
* ```
|
|
37
58
|
*
|
|
38
59
|
* @param ListMembershipsCommandInput - {@link ListMembershipsCommandInput}
|
|
@@ -53,6 +74,8 @@ export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __M
|
|
|
53
74
|
* @throws {@link ValidationException} (client fault)
|
|
54
75
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
55
76
|
*
|
|
77
|
+
* @throws {@link CleanRoomsServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
56
79
|
*
|
|
57
80
|
*/
|
|
58
81
|
export declare class ListMembershipsCommand extends $Command<ListMembershipsCommandInput, ListMembershipsCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -34,6 +34,19 @@ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesO
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListProtectedQueriesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListProtectedQueriesOutput
|
|
38
|
+
* // nextToken: "STRING_VALUE",
|
|
39
|
+
* // protectedQueries: [ // ProtectedQuerySummaryList // required
|
|
40
|
+
* // { // ProtectedQuerySummary
|
|
41
|
+
* // id: "STRING_VALUE", // required
|
|
42
|
+
* // membershipId: "STRING_VALUE", // required
|
|
43
|
+
* // membershipArn: "STRING_VALUE", // required
|
|
44
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // status: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
37
50
|
* ```
|
|
38
51
|
*
|
|
39
52
|
* @param ListProtectedQueriesCommandInput - {@link ListProtectedQueriesCommandInput}
|
|
@@ -57,6 +70,8 @@ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesO
|
|
|
57
70
|
* @throws {@link ValidationException} (client fault)
|
|
58
71
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
59
72
|
*
|
|
73
|
+
* @throws {@link CleanRoomsServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
60
75
|
*
|
|
61
76
|
*/
|
|
62
77
|
export declare class ListProtectedQueriesCommand extends $Command<ListProtectedQueriesCommandInput, ListProtectedQueriesCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -34,6 +34,25 @@ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListSchemasCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListSchemasOutput
|
|
38
|
+
* // schemaSummaries: [ // SchemaSummaryList // required
|
|
39
|
+
* // { // SchemaSummary
|
|
40
|
+
* // name: "STRING_VALUE", // required
|
|
41
|
+
* // type: "STRING_VALUE", // required
|
|
42
|
+
* // creatorAccountId: "STRING_VALUE", // required
|
|
43
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // collaborationId: "STRING_VALUE", // required
|
|
46
|
+
* // collaborationArn: "STRING_VALUE", // required
|
|
47
|
+
* // analysisRuleTypes: [ // AnalysisRuleTypeList // required
|
|
48
|
+
* // "AGGREGATION" || "LIST",
|
|
49
|
+
* // ],
|
|
50
|
+
* // analysisMethod: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
37
56
|
* ```
|
|
38
57
|
*
|
|
39
58
|
* @param ListSchemasCommandInput - {@link ListSchemasCommandInput}
|
|
@@ -57,6 +76,8 @@ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB
|
|
|
57
76
|
* @throws {@link ValidationException} (client fault)
|
|
58
77
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
59
78
|
*
|
|
79
|
+
* @throws {@link CleanRoomsServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
60
81
|
*
|
|
61
82
|
*/
|
|
62
83
|
export declare class ListSchemasCommand extends $Command<ListSchemasCommandInput, ListSchemasCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceOutput
|
|
35
|
+
* // tags: { // TagMap // required
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -45,6 +51,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
45
51
|
* @throws {@link ValidationException} (client fault)
|
|
46
52
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
47
53
|
*
|
|
54
|
+
* @throws {@link CleanRoomsServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
48
56
|
*
|
|
49
57
|
*/
|
|
50
58
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -44,6 +44,42 @@ export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOut
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new StartProtectedQueryCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // StartProtectedQueryOutput
|
|
48
|
+
* // protectedQuery: { // ProtectedQuery
|
|
49
|
+
* // id: "STRING_VALUE", // required
|
|
50
|
+
* // membershipId: "STRING_VALUE", // required
|
|
51
|
+
* // membershipArn: "STRING_VALUE", // required
|
|
52
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // sqlParameters: { // ProtectedQuerySQLParameters
|
|
54
|
+
* // queryString: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // status: "STRING_VALUE", // required
|
|
57
|
+
* // resultConfiguration: { // ProtectedQueryResultConfiguration
|
|
58
|
+
* // outputConfiguration: { // ProtectedQueryOutputConfiguration Union: only one key present
|
|
59
|
+
* // s3: { // ProtectedQueryS3OutputConfiguration
|
|
60
|
+
* // resultFormat: "STRING_VALUE", // required
|
|
61
|
+
* // bucket: "STRING_VALUE", // required
|
|
62
|
+
* // keyPrefix: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // statistics: { // ProtectedQueryStatistics
|
|
67
|
+
* // totalDurationInMillis: Number("long"),
|
|
68
|
+
* // },
|
|
69
|
+
* // result: { // ProtectedQueryResult
|
|
70
|
+
* // output: { // ProtectedQueryOutput Union: only one key present
|
|
71
|
+
* // s3: { // ProtectedQueryS3Output
|
|
72
|
+
* // location: "STRING_VALUE", // required
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // error: { // ProtectedQueryError
|
|
77
|
+
* // message: "STRING_VALUE", // required
|
|
78
|
+
* // code: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // };
|
|
82
|
+
*
|
|
47
83
|
* ```
|
|
48
84
|
*
|
|
49
85
|
* @param StartProtectedQueryCommandInput - {@link StartProtectedQueryCommandInput}
|
|
@@ -70,6 +106,8 @@ export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOut
|
|
|
70
106
|
* @throws {@link ValidationException} (client fault)
|
|
71
107
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
72
108
|
*
|
|
109
|
+
* @throws {@link CleanRoomsServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
73
111
|
*
|
|
74
112
|
*/
|
|
75
113
|
export declare class StartProtectedQueryCommand extends $Command<StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link CleanRoomsServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
48
50
|
* @throws {@link ValidationException} (client fault)
|
|
49
51
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link CleanRoomsServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -33,6 +33,29 @@ export interface UpdateCollaborationCommandOutput extends UpdateCollaborationOut
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateCollaborationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateCollaborationOutput
|
|
37
|
+
* // collaboration: { // Collaboration
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // name: "STRING_VALUE", // required
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // creatorAccountId: "STRING_VALUE", // required
|
|
43
|
+
* // creatorDisplayName: "STRING_VALUE", // required
|
|
44
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // memberStatus: "STRING_VALUE", // required
|
|
47
|
+
* // membershipId: "STRING_VALUE",
|
|
48
|
+
* // membershipArn: "STRING_VALUE",
|
|
49
|
+
* // dataEncryptionMetadata: { // DataEncryptionMetadata
|
|
50
|
+
* // allowCleartext: true || false, // required
|
|
51
|
+
* // allowDuplicates: true || false, // required
|
|
52
|
+
* // allowJoinsOnColumnsWithDifferentNames: true || false, // required
|
|
53
|
+
* // preserveNulls: true || false, // required
|
|
54
|
+
* // },
|
|
55
|
+
* // queryLogStatus: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
36
59
|
* ```
|
|
37
60
|
*
|
|
38
61
|
* @param UpdateCollaborationCommandInput - {@link UpdateCollaborationCommandInput}
|
|
@@ -53,6 +76,8 @@ export interface UpdateCollaborationCommandOutput extends UpdateCollaborationOut
|
|
|
53
76
|
* @throws {@link ValidationException} (client fault)
|
|
54
77
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
55
78
|
*
|
|
79
|
+
* @throws {@link CleanRoomsServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
56
81
|
*
|
|
57
82
|
*/
|
|
58
83
|
export declare class UpdateCollaborationCommand extends $Command<UpdateCollaborationCommandInput, UpdateCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -71,6 +71,55 @@ export interface UpdateConfiguredTableAnalysisRuleCommandOutput extends UpdateCo
|
|
|
71
71
|
* };
|
|
72
72
|
* const command = new UpdateConfiguredTableAnalysisRuleCommand(input);
|
|
73
73
|
* const response = await client.send(command);
|
|
74
|
+
* // { // UpdateConfiguredTableAnalysisRuleOutput
|
|
75
|
+
* // analysisRule: { // ConfiguredTableAnalysisRule
|
|
76
|
+
* // configuredTableId: "STRING_VALUE", // required
|
|
77
|
+
* // configuredTableArn: "STRING_VALUE", // required
|
|
78
|
+
* // policy: { // ConfiguredTableAnalysisRulePolicy Union: only one key present
|
|
79
|
+
* // v1: { // ConfiguredTableAnalysisRulePolicyV1 Union: only one key present
|
|
80
|
+
* // list: { // AnalysisRuleList
|
|
81
|
+
* // joinColumns: [ // AnalysisRuleColumnList // required
|
|
82
|
+
* // "STRING_VALUE",
|
|
83
|
+
* // ],
|
|
84
|
+
* // listColumns: [ // required
|
|
85
|
+
* // "STRING_VALUE",
|
|
86
|
+
* // ],
|
|
87
|
+
* // },
|
|
88
|
+
* // aggregation: { // AnalysisRuleAggregation
|
|
89
|
+
* // aggregateColumns: [ // AggregateColumnList // required
|
|
90
|
+
* // { // AggregateColumn
|
|
91
|
+
* // columnNames: [ // AnalysisRuleColumnNameList // required
|
|
92
|
+
* // "STRING_VALUE",
|
|
93
|
+
* // ],
|
|
94
|
+
* // function: "STRING_VALUE", // required
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // joinColumns: [ // required
|
|
98
|
+
* // "STRING_VALUE",
|
|
99
|
+
* // ],
|
|
100
|
+
* // joinRequired: "STRING_VALUE",
|
|
101
|
+
* // dimensionColumns: [ // required
|
|
102
|
+
* // "STRING_VALUE",
|
|
103
|
+
* // ],
|
|
104
|
+
* // scalarFunctions: [ // ScalarFunctionsList // required
|
|
105
|
+
* // "STRING_VALUE",
|
|
106
|
+
* // ],
|
|
107
|
+
* // outputConstraints: [ // AggregationConstraints // required
|
|
108
|
+
* // { // AggregationConstraint
|
|
109
|
+
* // columnName: "STRING_VALUE", // required
|
|
110
|
+
* // minimum: Number("int"), // required
|
|
111
|
+
* // type: "STRING_VALUE", // required
|
|
112
|
+
* // },
|
|
113
|
+
* // ],
|
|
114
|
+
* // },
|
|
115
|
+
* // },
|
|
116
|
+
* // },
|
|
117
|
+
* // type: "AGGREGATION" || "LIST", // required
|
|
118
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
119
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
120
|
+
* // },
|
|
121
|
+
* // };
|
|
122
|
+
*
|
|
74
123
|
* ```
|
|
75
124
|
*
|
|
76
125
|
* @param UpdateConfiguredTableAnalysisRuleCommandInput - {@link UpdateConfiguredTableAnalysisRuleCommandInput}
|
|
@@ -97,6 +146,8 @@ export interface UpdateConfiguredTableAnalysisRuleCommandOutput extends UpdateCo
|
|
|
97
146
|
* @throws {@link ValidationException} (client fault)
|
|
98
147
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
99
148
|
*
|
|
149
|
+
* @throws {@link CleanRoomsServiceException}
|
|
150
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
100
151
|
*
|
|
101
152
|
*/
|
|
102
153
|
export declare class UpdateConfiguredTableAnalysisRuleCommand extends $Command<UpdateConfiguredTableAnalysisRuleCommandInput, UpdateConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -34,6 +34,22 @@ export interface UpdateConfiguredTableAssociationCommandOutput extends UpdateCon
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateConfiguredTableAssociationCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateConfiguredTableAssociationOutput
|
|
38
|
+
* // configuredTableAssociation: { // ConfiguredTableAssociation
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // id: "STRING_VALUE", // required
|
|
41
|
+
* // configuredTableId: "STRING_VALUE", // required
|
|
42
|
+
* // configuredTableArn: "STRING_VALUE", // required
|
|
43
|
+
* // membershipId: "STRING_VALUE", // required
|
|
44
|
+
* // membershipArn: "STRING_VALUE", // required
|
|
45
|
+
* // roleArn: "STRING_VALUE", // required
|
|
46
|
+
* // name: "STRING_VALUE", // required
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
37
53
|
* ```
|
|
38
54
|
*
|
|
39
55
|
* @param UpdateConfiguredTableAssociationCommandInput - {@link UpdateConfiguredTableAssociationCommandInput}
|
|
@@ -60,6 +76,8 @@ export interface UpdateConfiguredTableAssociationCommandOutput extends UpdateCon
|
|
|
60
76
|
* @throws {@link ValidationException} (client fault)
|
|
61
77
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
62
78
|
*
|
|
79
|
+
* @throws {@link CleanRoomsServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
63
81
|
*
|
|
64
82
|
*/
|
|
65
83
|
export declare class UpdateConfiguredTableAssociationCommand extends $Command<UpdateConfiguredTableAssociationCommandInput, UpdateConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
|
|
@@ -33,6 +33,30 @@ export interface UpdateConfiguredTableCommandOutput extends UpdateConfiguredTabl
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateConfiguredTableCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateConfiguredTableOutput
|
|
37
|
+
* // configuredTable: { // ConfiguredTable
|
|
38
|
+
* // id: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // name: "STRING_VALUE", // required
|
|
41
|
+
* // description: "STRING_VALUE",
|
|
42
|
+
* // tableReference: { // TableReference Union: only one key present
|
|
43
|
+
* // glue: { // GlueTableReference
|
|
44
|
+
* // tableName: "STRING_VALUE", // required
|
|
45
|
+
* // databaseName: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // createTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // updateTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // analysisRuleTypes: [ // ConfiguredTableAnalysisRuleTypeList // required
|
|
51
|
+
* // "AGGREGATION" || "LIST",
|
|
52
|
+
* // ],
|
|
53
|
+
* // analysisMethod: "STRING_VALUE", // required
|
|
54
|
+
* // allowedColumns: [ // AllowedColumnList // required
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
36
60
|
* ```
|
|
37
61
|
*
|
|
38
62
|
* @param UpdateConfiguredTableCommandInput - {@link UpdateConfiguredTableCommandInput}
|
|
@@ -59,6 +83,8 @@ export interface UpdateConfiguredTableCommandOutput extends UpdateConfiguredTabl
|
|
|
59
83
|
* @throws {@link ValidationException} (client fault)
|
|
60
84
|
* <p>The input fails to satisfy the specified constraints.</p>
|
|
61
85
|
*
|
|
86
|
+
* @throws {@link CleanRoomsServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from CleanRooms service.</p>
|
|
62
88
|
*
|
|
63
89
|
*/
|
|
64
90
|
export declare class UpdateConfiguredTableCommand extends $Command<UpdateConfiguredTableCommandInput, UpdateConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
|