@aws-sdk/client-cleanrooms 3.289.0 → 3.292.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 (35) hide show
  1. package/dist-types/commands/BatchGetSchemaCommand.d.ts +16 -0
  2. package/dist-types/commands/CreateCollaborationCommand.d.ts +16 -0
  3. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +19 -0
  4. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +22 -0
  5. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +22 -0
  6. package/dist-types/commands/CreateMembershipCommand.d.ts +22 -0
  7. package/dist-types/commands/DeleteCollaborationCommand.d.ts +13 -0
  8. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +19 -0
  9. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +19 -0
  10. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +19 -0
  11. package/dist-types/commands/DeleteMemberCommand.d.ts +19 -0
  12. package/dist-types/commands/DeleteMembershipCommand.d.ts +19 -0
  13. package/dist-types/commands/GetCollaborationCommand.d.ts +13 -0
  14. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +16 -0
  15. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +16 -0
  16. package/dist-types/commands/GetConfiguredTableCommand.d.ts +16 -0
  17. package/dist-types/commands/GetMembershipCommand.d.ts +16 -0
  18. package/dist-types/commands/GetProtectedQueryCommand.d.ts +16 -0
  19. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +16 -0
  20. package/dist-types/commands/GetSchemaCommand.d.ts +16 -0
  21. package/dist-types/commands/ListCollaborationsCommand.d.ts +13 -0
  22. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +13 -0
  23. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +13 -0
  24. package/dist-types/commands/ListMembersCommand.d.ts +16 -0
  25. package/dist-types/commands/ListMembershipsCommand.d.ts +13 -0
  26. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +13 -0
  27. package/dist-types/commands/ListSchemasCommand.d.ts +16 -0
  28. package/dist-types/commands/StartProtectedQueryCommand.d.ts +19 -0
  29. package/dist-types/commands/UpdateCollaborationCommand.d.ts +13 -0
  30. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +19 -0
  31. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +19 -0
  32. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +19 -0
  33. package/dist-types/commands/UpdateMembershipCommand.d.ts +19 -0
  34. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +19 -0
  35. package/package.json +35 -40
@@ -29,6 +29,22 @@ export interface BatchGetSchemaCommandOutput extends BatchGetSchemaOutput, __Met
29
29
  * @see {@link BatchGetSchemaCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class BatchGetSchemaCommand extends $Command<BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: BatchGetSchemaCommandInput;
@@ -29,6 +29,22 @@ export interface CreateCollaborationCommandOutput extends CreateCollaborationOut
29
29
  * @see {@link CreateCollaborationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ServiceQuotaExceededException} (client fault)
39
+ * <p>Request denied because service quota has been exceeded.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class CreateCollaborationCommand extends $Command<CreateCollaborationCommandInput, CreateCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: CreateCollaborationCommandInput;
@@ -30,6 +30,25 @@ export interface CreateConfiguredTableAnalysisRuleCommandOutput extends CreateCo
30
30
  * @see {@link CreateConfiguredTableAnalysisRuleCommandOutput} for command's `response` shape.
31
31
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>Caller does not have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
38
+ *
39
+ * @throws {@link InternalServerException} (server fault)
40
+ * <p>Unexpected error during processing of request.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>Request references a resource which does not exist.</p>
44
+ *
45
+ * @throws {@link ThrottlingException} (client fault)
46
+ * <p>Request was denied due to request throttling.</p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>The input fails to satisfy the specified constraints.</p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class CreateConfiguredTableAnalysisRuleCommand extends $Command<CreateConfiguredTableAnalysisRuleCommandInput, CreateConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
35
54
  readonly input: CreateConfiguredTableAnalysisRuleCommandInput;
@@ -30,6 +30,28 @@ export interface CreateConfiguredTableAssociationCommandOutput extends CreateCon
30
30
  * @see {@link CreateConfiguredTableAssociationCommandOutput} for command's `response` shape.
31
31
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>Caller does not have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
38
+ *
39
+ * @throws {@link InternalServerException} (server fault)
40
+ * <p>Unexpected error during processing of request.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>Request references a resource which does not exist.</p>
44
+ *
45
+ * @throws {@link ServiceQuotaExceededException} (client fault)
46
+ * <p>Request denied because service quota has been exceeded.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>Request was denied due to request throttling.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The input fails to satisfy the specified constraints.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class CreateConfiguredTableAssociationCommand extends $Command<CreateConfiguredTableAssociationCommandInput, CreateConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
35
57
  readonly input: CreateConfiguredTableAssociationCommandInput;
@@ -29,6 +29,28 @@ export interface CreateConfiguredTableCommandOutput extends CreateConfiguredTabl
29
29
  * @see {@link CreateConfiguredTableCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ServiceQuotaExceededException} (client fault)
45
+ * <p>Request denied because service quota has been exceeded.</p>
46
+ *
47
+ * @throws {@link ThrottlingException} (client fault)
48
+ * <p>Request was denied due to request throttling.</p>
49
+ *
50
+ * @throws {@link ValidationException} (client fault)
51
+ * <p>The input fails to satisfy the specified constraints.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class CreateConfiguredTableCommand extends $Command<CreateConfiguredTableCommandInput, CreateConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
34
56
  readonly input: CreateConfiguredTableCommandInput;
@@ -30,6 +30,28 @@ export interface CreateMembershipCommandOutput extends CreateMembershipOutput, _
30
30
  * @see {@link CreateMembershipCommandOutput} for command's `response` shape.
31
31
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>Caller does not have sufficient access to perform this action.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
38
+ *
39
+ * @throws {@link InternalServerException} (server fault)
40
+ * <p>Unexpected error during processing of request.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>Request references a resource which does not exist.</p>
44
+ *
45
+ * @throws {@link ServiceQuotaExceededException} (client fault)
46
+ * <p>Request denied because service quota has been exceeded.</p>
47
+ *
48
+ * @throws {@link ThrottlingException} (client fault)
49
+ * <p>Request was denied due to request throttling.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>The input fails to satisfy the specified constraints.</p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class CreateMembershipCommand extends $Command<CreateMembershipCommandInput, CreateMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
35
57
  readonly input: CreateMembershipCommandInput;
@@ -29,6 +29,19 @@ export interface DeleteCollaborationCommandOutput extends DeleteCollaborationOut
29
29
  * @see {@link DeleteCollaborationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class DeleteCollaborationCommand extends $Command<DeleteCollaborationCommandInput, DeleteCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: DeleteCollaborationCommandInput;
@@ -29,6 +29,25 @@ export interface DeleteConfiguredTableAnalysisRuleCommandOutput extends DeleteCo
29
29
  * @see {@link DeleteConfiguredTableAnalysisRuleCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class DeleteConfiguredTableAnalysisRuleCommand extends $Command<DeleteConfiguredTableAnalysisRuleCommandInput, DeleteConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: DeleteConfiguredTableAnalysisRuleCommandInput;
@@ -29,6 +29,25 @@ export interface DeleteConfiguredTableAssociationCommandOutput extends DeleteCon
29
29
  * @see {@link DeleteConfiguredTableAssociationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class DeleteConfiguredTableAssociationCommand extends $Command<DeleteConfiguredTableAssociationCommandInput, DeleteConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: DeleteConfiguredTableAssociationCommandInput;
@@ -29,6 +29,25 @@ export interface DeleteConfiguredTableCommandOutput extends DeleteConfiguredTabl
29
29
  * @see {@link DeleteConfiguredTableCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class DeleteConfiguredTableCommand extends $Command<DeleteConfiguredTableCommandInput, DeleteConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: DeleteConfiguredTableCommandInput;
@@ -31,6 +31,25 @@ export interface DeleteMemberCommandOutput extends DeleteMemberOutput, __Metadat
31
31
  * @see {@link DeleteMemberCommandOutput} for command's `response` shape.
32
32
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>Caller does not have sufficient access to perform this action.</p>
36
+ *
37
+ * @throws {@link ConflictException} (client fault)
38
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>Unexpected error during processing of request.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>Request references a resource which does not exist.</p>
45
+ *
46
+ * @throws {@link ThrottlingException} (client fault)
47
+ * <p>Request was denied due to request throttling.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p>The input fails to satisfy the specified constraints.</p>
51
+ *
52
+ *
34
53
  */
35
54
  export declare class DeleteMemberCommand extends $Command<DeleteMemberCommandInput, DeleteMemberCommandOutput, CleanRoomsClientResolvedConfig> {
36
55
  readonly input: DeleteMemberCommandInput;
@@ -29,6 +29,25 @@ export interface DeleteMembershipCommandOutput extends DeleteMembershipOutput, _
29
29
  * @see {@link DeleteMembershipCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class DeleteMembershipCommand extends $Command<DeleteMembershipCommandInput, DeleteMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: DeleteMembershipCommandInput;
@@ -29,6 +29,19 @@ export interface GetCollaborationCommandOutput extends GetCollaborationOutput, _
29
29
  * @see {@link GetCollaborationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class GetCollaborationCommand extends $Command<GetCollaborationCommandInput, GetCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: GetCollaborationCommandInput;
@@ -29,6 +29,22 @@ export interface GetConfiguredTableAnalysisRuleCommandOutput extends GetConfigur
29
29
  * @see {@link GetConfiguredTableAnalysisRuleCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetConfiguredTableAnalysisRuleCommand extends $Command<GetConfiguredTableAnalysisRuleCommandInput, GetConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetConfiguredTableAnalysisRuleCommandInput;
@@ -29,6 +29,22 @@ export interface GetConfiguredTableAssociationCommandOutput extends GetConfigure
29
29
  * @see {@link GetConfiguredTableAssociationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetConfiguredTableAssociationCommand extends $Command<GetConfiguredTableAssociationCommandInput, GetConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetConfiguredTableAssociationCommandInput;
@@ -29,6 +29,22 @@ export interface GetConfiguredTableCommandOutput extends GetConfiguredTableOutpu
29
29
  * @see {@link GetConfiguredTableCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetConfiguredTableCommand extends $Command<GetConfiguredTableCommandInput, GetConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetConfiguredTableCommandInput;
@@ -29,6 +29,22 @@ export interface GetMembershipCommandOutput extends GetMembershipOutput, __Metad
29
29
  * @see {@link GetMembershipCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetMembershipCommand extends $Command<GetMembershipCommandInput, GetMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetMembershipCommandInput;
@@ -29,6 +29,22 @@ export interface GetProtectedQueryCommandOutput extends GetProtectedQueryOutput,
29
29
  * @see {@link GetProtectedQueryCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetProtectedQueryCommand extends $Command<GetProtectedQueryCommandInput, GetProtectedQueryCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetProtectedQueryCommandInput;
@@ -29,6 +29,22 @@ export interface GetSchemaAnalysisRuleCommandOutput extends GetSchemaAnalysisRul
29
29
  * @see {@link GetSchemaAnalysisRuleCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetSchemaAnalysisRuleCommand extends $Command<GetSchemaAnalysisRuleCommandInput, GetSchemaAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetSchemaAnalysisRuleCommandInput;
@@ -29,6 +29,22 @@ export interface GetSchemaCommandOutput extends GetSchemaOutput, __MetadataBeare
29
29
  * @see {@link GetSchemaCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class GetSchemaCommand extends $Command<GetSchemaCommandInput, GetSchemaCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: GetSchemaCommandInput;
@@ -29,6 +29,19 @@ export interface ListCollaborationsCommandOutput extends ListCollaborationsOutpu
29
29
  * @see {@link ListCollaborationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListCollaborationsCommand extends $Command<ListCollaborationsCommandInput, ListCollaborationsCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: ListCollaborationsCommandInput;
@@ -29,6 +29,19 @@ export interface ListConfiguredTableAssociationsCommandOutput extends ListConfig
29
29
  * @see {@link ListConfiguredTableAssociationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListConfiguredTableAssociationsCommand extends $Command<ListConfiguredTableAssociationsCommandInput, ListConfiguredTableAssociationsCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: ListConfiguredTableAssociationsCommandInput;
@@ -29,6 +29,19 @@ export interface ListConfiguredTablesCommandOutput extends ListConfiguredTablesO
29
29
  * @see {@link ListConfiguredTablesCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListConfiguredTablesCommand extends $Command<ListConfiguredTablesCommandInput, ListConfiguredTablesCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: ListConfiguredTablesCommandInput;
@@ -29,6 +29,22 @@ export interface ListMembersCommandOutput extends ListMembersOutput, __MetadataB
29
29
  * @see {@link ListMembersCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class ListMembersCommand extends $Command<ListMembersCommandInput, ListMembersCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: ListMembersCommandInput;
@@ -29,6 +29,19 @@ export interface ListMembershipsCommandOutput extends ListMembershipsOutput, __M
29
29
  * @see {@link ListMembershipsCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListMembershipsCommand extends $Command<ListMembershipsCommandInput, ListMembershipsCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: ListMembershipsCommandInput;
@@ -29,6 +29,19 @@ export interface ListProtectedQueriesCommandOutput extends ListProtectedQueriesO
29
29
  * @see {@link ListProtectedQueriesCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class ListProtectedQueriesCommand extends $Command<ListProtectedQueriesCommandInput, ListProtectedQueriesCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: ListProtectedQueriesCommandInput;
@@ -29,6 +29,22 @@ export interface ListSchemasCommandOutput extends ListSchemasOutput, __MetadataB
29
29
  * @see {@link ListSchemasCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ThrottlingException} (client fault)
42
+ * <p>Request was denied due to request throttling.</p>
43
+ *
44
+ * @throws {@link ValidationException} (client fault)
45
+ * <p>The input fails to satisfy the specified constraints.</p>
46
+ *
47
+ *
32
48
  */
33
49
  export declare class ListSchemasCommand extends $Command<ListSchemasCommandInput, ListSchemasCommandOutput, CleanRoomsClientResolvedConfig> {
34
50
  readonly input: ListSchemasCommandInput;
@@ -29,6 +29,25 @@ export interface StartProtectedQueryCommandOutput extends StartProtectedQueryOut
29
29
  * @see {@link StartProtectedQueryCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>Request references a resource which does not exist.</p>
40
+ *
41
+ * @throws {@link ServiceQuotaExceededException} (client fault)
42
+ * <p>Request denied because service quota has been exceeded.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class StartProtectedQueryCommand extends $Command<StartProtectedQueryCommandInput, StartProtectedQueryCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: StartProtectedQueryCommandInput;
@@ -29,6 +29,19 @@ export interface UpdateCollaborationCommandOutput extends UpdateCollaborationOut
29
29
  * @see {@link UpdateCollaborationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>Unexpected error during processing of request.</p>
37
+ *
38
+ * @throws {@link ThrottlingException} (client fault)
39
+ * <p>Request was denied due to request throttling.</p>
40
+ *
41
+ * @throws {@link ValidationException} (client fault)
42
+ * <p>The input fails to satisfy the specified constraints.</p>
43
+ *
44
+ *
32
45
  */
33
46
  export declare class UpdateCollaborationCommand extends $Command<UpdateCollaborationCommandInput, UpdateCollaborationCommandOutput, CleanRoomsClientResolvedConfig> {
34
47
  readonly input: UpdateCollaborationCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateConfiguredTableAnalysisRuleCommandOutput extends UpdateCo
29
29
  * @see {@link UpdateConfiguredTableAnalysisRuleCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateConfiguredTableAnalysisRuleCommand extends $Command<UpdateConfiguredTableAnalysisRuleCommandInput, UpdateConfiguredTableAnalysisRuleCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: UpdateConfiguredTableAnalysisRuleCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateConfiguredTableAssociationCommandOutput extends UpdateCon
29
29
  * @see {@link UpdateConfiguredTableAssociationCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateConfiguredTableAssociationCommand extends $Command<UpdateConfiguredTableAssociationCommandInput, UpdateConfiguredTableAssociationCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: UpdateConfiguredTableAssociationCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateConfiguredTableCommandOutput extends UpdateConfiguredTabl
29
29
  * @see {@link UpdateConfiguredTableCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateConfiguredTableCommand extends $Command<UpdateConfiguredTableCommandInput, UpdateConfiguredTableCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: UpdateConfiguredTableCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateMembershipCommandOutput extends UpdateMembershipOutput, _
29
29
  * @see {@link UpdateMembershipCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateMembershipCommand extends $Command<UpdateMembershipCommandInput, UpdateMembershipCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: UpdateMembershipCommandInput;
@@ -29,6 +29,25 @@ export interface UpdateProtectedQueryCommandOutput extends UpdateProtectedQueryO
29
29
  * @see {@link UpdateProtectedQueryCommandOutput} for command's `response` shape.
30
30
  * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>Caller does not have sufficient access to perform this action.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>Unexpected error during processing of request.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>Request references a resource which does not exist.</p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>Request was denied due to request throttling.</p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>The input fails to satisfy the specified constraints.</p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class UpdateProtectedQueryCommand extends $Command<UpdateProtectedQueryCommandInput, UpdateProtectedQueryCommandOutput, CleanRoomsClientResolvedConfig> {
34
53
  readonly input: UpdateProtectedQueryCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cleanrooms",
3
3
  "description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.292.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,55 +20,50 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
45
- "@aws-sdk/util-base64": "3.208.0",
46
- "@aws-sdk/util-body-length-browser": "3.188.0",
47
- "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
54
- "@aws-sdk/util-utf8": "3.254.0",
23
+ "@aws-sdk/client-sts": "3.292.0",
24
+ "@aws-sdk/config-resolver": "3.292.0",
25
+ "@aws-sdk/credential-provider-node": "3.292.0",
26
+ "@aws-sdk/fetch-http-handler": "3.292.0",
27
+ "@aws-sdk/hash-node": "3.292.0",
28
+ "@aws-sdk/invalid-dependency": "3.292.0",
29
+ "@aws-sdk/middleware-content-length": "3.292.0",
30
+ "@aws-sdk/middleware-endpoint": "3.292.0",
31
+ "@aws-sdk/middleware-host-header": "3.292.0",
32
+ "@aws-sdk/middleware-logger": "3.292.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.292.0",
34
+ "@aws-sdk/middleware-retry": "3.292.0",
35
+ "@aws-sdk/middleware-serde": "3.292.0",
36
+ "@aws-sdk/middleware-signing": "3.292.0",
37
+ "@aws-sdk/middleware-stack": "3.292.0",
38
+ "@aws-sdk/middleware-user-agent": "3.292.0",
39
+ "@aws-sdk/node-config-provider": "3.292.0",
40
+ "@aws-sdk/node-http-handler": "3.292.0",
41
+ "@aws-sdk/protocol-http": "3.292.0",
42
+ "@aws-sdk/smithy-client": "3.292.0",
43
+ "@aws-sdk/types": "3.292.0",
44
+ "@aws-sdk/url-parser": "3.292.0",
45
+ "@aws-sdk/util-base64": "3.292.0",
46
+ "@aws-sdk/util-body-length-browser": "3.292.0",
47
+ "@aws-sdk/util-body-length-node": "3.292.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.292.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.292.0",
50
+ "@aws-sdk/util-endpoints": "3.292.0",
51
+ "@aws-sdk/util-retry": "3.292.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.292.0",
53
+ "@aws-sdk/util-user-agent-node": "3.292.0",
54
+ "@aws-sdk/util-utf8": "3.292.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@aws-sdk/service-client-documentation-generator": "3.208.0",
58
+ "@aws-sdk/service-client-documentation-generator": "3.292.0",
59
59
  "@tsconfig/node14": "1.0.3",
60
60
  "@types/node": "^14.14.31",
61
61
  "concurrently": "7.0.0",
62
62
  "downlevel-dts": "0.10.1",
63
63
  "rimraf": "3.0.2",
64
- "typedoc": "0.19.2",
64
+ "typedoc": "0.23.23",
65
65
  "typescript": "~4.6.2"
66
66
  },
67
- "overrides": {
68
- "typedoc": {
69
- "typescript": "~4.6.2"
70
- }
71
- },
72
67
  "engines": {
73
68
  "node": ">=14.0.0"
74
69
  },