/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.cleanrooms; import javax.annotation.Generated; import com.amazonaws.*; import com.amazonaws.regions.*; import com.amazonaws.services.cleanrooms.model.*; /** * Interface for accessing AWS Clean Rooms Service. *

* Note: Do not directly implement this interface, new methods are added to it regularly. Extend from * {@link com.amazonaws.services.cleanrooms.AbstractAWSCleanRooms} instead. *

*

*

* Welcome to the Clean Rooms API Reference. *

*

* Clean Rooms is an Amazon Web Services service that helps multiple parties to join their data together in a secure * collaboration workspace. In the collaboration, members who can query and receive results can get insights into the * collective datasets without either party getting access to the other party's raw data. *

*

* To learn more about Clean Rooms concepts, procedures, and best practices, see the Clean Rooms User Guide. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public interface AWSCleanRooms { /** * The region metadata service name for computing region endpoints. You can use this value to retrieve metadata * (such as supported regions) of the service. * * @see RegionUtils#getRegionsForService(String) */ String ENDPOINT_PREFIX = "cleanrooms"; /** *

* Retrieves multiple schemas by their identifiers. *

* * @param batchGetSchemaRequest * @return Result of the BatchGetSchema operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.BatchGetSchema * @see AWS API * Documentation */ BatchGetSchemaResult batchGetSchema(BatchGetSchemaRequest batchGetSchemaRequest); /** *

* Creates a new collaboration. *

* * @param createCollaborationRequest * @return Result of the CreateCollaboration operation returned by the service. * @throws ServiceQuotaExceededException * Request denied because service quota has been exceeded. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.CreateCollaboration * @see AWS * API Documentation */ CreateCollaborationResult createCollaboration(CreateCollaborationRequest createCollaborationRequest); /** *

* Creates a new configured table resource. *

* * @param createConfiguredTableRequest * @return Result of the CreateConfiguredTable operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ServiceQuotaExceededException * Request denied because service quota has been exceeded. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.CreateConfiguredTable * @see AWS API Documentation */ CreateConfiguredTableResult createConfiguredTable(CreateConfiguredTableRequest createConfiguredTableRequest); /** *

* Creates a new analysis rule for a configured table. Currently, only one analysis rule can be created for a given * configured table. *

* * @param createConfiguredTableAnalysisRuleRequest * @return Result of the CreateConfiguredTableAnalysisRule operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.CreateConfiguredTableAnalysisRule * @see AWS API Documentation */ CreateConfiguredTableAnalysisRuleResult createConfiguredTableAnalysisRule(CreateConfiguredTableAnalysisRuleRequest createConfiguredTableAnalysisRuleRequest); /** *

* Creates a configured table association. A configured table association links a configured table with a * collaboration. *

* * @param createConfiguredTableAssociationRequest * @return Result of the CreateConfiguredTableAssociation operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ServiceQuotaExceededException * Request denied because service quota has been exceeded. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.CreateConfiguredTableAssociation * @see AWS API Documentation */ CreateConfiguredTableAssociationResult createConfiguredTableAssociation(CreateConfiguredTableAssociationRequest createConfiguredTableAssociationRequest); /** *

* Creates a membership for a specific collaboration identifier and joins the collaboration. *

* * @param createMembershipRequest * @return Result of the CreateMembership operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ServiceQuotaExceededException * Request denied because service quota has been exceeded. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.CreateMembership * @see AWS * API Documentation */ CreateMembershipResult createMembership(CreateMembershipRequest createMembershipRequest); /** *

* Deletes a collaboration. It can only be called by the collaboration owner. *

* * @param deleteCollaborationRequest * @return Result of the DeleteCollaboration operation returned by the service. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.DeleteCollaboration * @see AWS * API Documentation */ DeleteCollaborationResult deleteCollaboration(DeleteCollaborationRequest deleteCollaborationRequest); /** *

* Deletes a configured table. *

* * @param deleteConfiguredTableRequest * @return Result of the DeleteConfiguredTable operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.DeleteConfiguredTable * @see AWS API Documentation */ DeleteConfiguredTableResult deleteConfiguredTable(DeleteConfiguredTableRequest deleteConfiguredTableRequest); /** *

* Deletes a configured table analysis rule. *

* * @param deleteConfiguredTableAnalysisRuleRequest * @return Result of the DeleteConfiguredTableAnalysisRule operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.DeleteConfiguredTableAnalysisRule * @see AWS API Documentation */ DeleteConfiguredTableAnalysisRuleResult deleteConfiguredTableAnalysisRule(DeleteConfiguredTableAnalysisRuleRequest deleteConfiguredTableAnalysisRuleRequest); /** *

* Deletes a configured table association. *

* * @param deleteConfiguredTableAssociationRequest * @return Result of the DeleteConfiguredTableAssociation operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.DeleteConfiguredTableAssociation * @see AWS API Documentation */ DeleteConfiguredTableAssociationResult deleteConfiguredTableAssociation(DeleteConfiguredTableAssociationRequest deleteConfiguredTableAssociationRequest); /** *

* Removes the specified member from a collaboration. The removed member is placed in the Removed status and can't * interact with the collaboration. The removed member's data is inaccessible to active members of the * collaboration. *

* * @param deleteMemberRequest * @return Result of the DeleteMember operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.DeleteMember * @see AWS API * Documentation */ DeleteMemberResult deleteMember(DeleteMemberRequest deleteMemberRequest); /** *

* Deletes a specified membership. All resources under a membership must be deleted. *

* * @param deleteMembershipRequest * @return Result of the DeleteMembership operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.DeleteMembership * @see AWS * API Documentation */ DeleteMembershipResult deleteMembership(DeleteMembershipRequest deleteMembershipRequest); /** *

* Returns metadata about a collaboration. *

* * @param getCollaborationRequest * @return Result of the GetCollaboration operation returned by the service. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetCollaboration * @see AWS * API Documentation */ GetCollaborationResult getCollaboration(GetCollaborationRequest getCollaborationRequest); /** *

* Retrieves a configured table. *

* * @param getConfiguredTableRequest * @return Result of the GetConfiguredTable operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetConfiguredTable * @see AWS * API Documentation */ GetConfiguredTableResult getConfiguredTable(GetConfiguredTableRequest getConfiguredTableRequest); /** *

* Retrieves a configured table analysis rule. *

* * @param getConfiguredTableAnalysisRuleRequest * @return Result of the GetConfiguredTableAnalysisRule operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetConfiguredTableAnalysisRule * @see AWS API Documentation */ GetConfiguredTableAnalysisRuleResult getConfiguredTableAnalysisRule(GetConfiguredTableAnalysisRuleRequest getConfiguredTableAnalysisRuleRequest); /** *

* Retrieves a configured table association. *

* * @param getConfiguredTableAssociationRequest * @return Result of the GetConfiguredTableAssociation operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetConfiguredTableAssociation * @see AWS API Documentation */ GetConfiguredTableAssociationResult getConfiguredTableAssociation(GetConfiguredTableAssociationRequest getConfiguredTableAssociationRequest); /** *

* Retrieves a specified membership for an identifier. *

* * @param getMembershipRequest * @return Result of the GetMembership operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetMembership * @see AWS API * Documentation */ GetMembershipResult getMembership(GetMembershipRequest getMembershipRequest); /** *

* Returns query processing metadata. *

* * @param getProtectedQueryRequest * @return Result of the GetProtectedQuery operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetProtectedQuery * @see AWS * API Documentation */ GetProtectedQueryResult getProtectedQuery(GetProtectedQueryRequest getProtectedQueryRequest); /** *

* Retrieves the schema for a relation within a collaboration. *

* * @param getSchemaRequest * @return Result of the GetSchema operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetSchema * @see AWS API * Documentation */ GetSchemaResult getSchema(GetSchemaRequest getSchemaRequest); /** *

* Retrieves a schema analysis rule. *

* * @param getSchemaAnalysisRuleRequest * @return Result of the GetSchemaAnalysisRule operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.GetSchemaAnalysisRule * @see AWS API Documentation */ GetSchemaAnalysisRuleResult getSchemaAnalysisRule(GetSchemaAnalysisRuleRequest getSchemaAnalysisRuleRequest); /** *

* Lists collaborations the caller owns, is active in, or has been invited to. *

* * @param listCollaborationsRequest * @return Result of the ListCollaborations operation returned by the service. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListCollaborations * @see AWS * API Documentation */ ListCollaborationsResult listCollaborations(ListCollaborationsRequest listCollaborationsRequest); /** *

* Lists configured table associations for a membership. *

* * @param listConfiguredTableAssociationsRequest * @return Result of the ListConfiguredTableAssociations operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListConfiguredTableAssociations * @see AWS API Documentation */ ListConfiguredTableAssociationsResult listConfiguredTableAssociations(ListConfiguredTableAssociationsRequest listConfiguredTableAssociationsRequest); /** *

* Lists configured tables. *

* * @param listConfiguredTablesRequest * @return Result of the ListConfiguredTables operation returned by the service. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListConfiguredTables * @see AWS API Documentation */ ListConfiguredTablesResult listConfiguredTables(ListConfiguredTablesRequest listConfiguredTablesRequest); /** *

* Lists all members within a collaboration. *

* * @param listMembersRequest * @return Result of the ListMembers operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListMembers * @see AWS API * Documentation */ ListMembersResult listMembers(ListMembersRequest listMembersRequest); /** *

* Lists all memberships resources within the caller's account. *

* * @param listMembershipsRequest * @return Result of the ListMemberships operation returned by the service. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListMemberships * @see AWS API * Documentation */ ListMembershipsResult listMemberships(ListMembershipsRequest listMembershipsRequest); /** *

* Lists protected queries, sorted by the most recent query. *

* * @param listProtectedQueriesRequest * @return Result of the ListProtectedQueries operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListProtectedQueries * @see AWS API Documentation */ ListProtectedQueriesResult listProtectedQueries(ListProtectedQueriesRequest listProtectedQueriesRequest); /** *

* Lists the schemas for relations within a collaboration. *

* * @param listSchemasRequest * @return Result of the ListSchemas operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.ListSchemas * @see AWS API * Documentation */ ListSchemasResult listSchemas(ListSchemasRequest listSchemasRequest); /** *

* Lists all of the tags that have been added to a resource. *

* * @param listTagsForResourceRequest * @return Result of the ListTagsForResource operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws ValidationException * The input fails to satisfy the specified constraints. * @sample AWSCleanRooms.ListTagsForResource * @see AWS * API Documentation */ ListTagsForResourceResult listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest); /** *

* Creates a protected query that is started by Clean Rooms . *

* * @param startProtectedQueryRequest * @return Result of the StartProtectedQuery operation returned by the service. * @throws ServiceQuotaExceededException * Request denied because service quota has been exceeded. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.StartProtectedQuery * @see AWS * API Documentation */ StartProtectedQueryResult startProtectedQuery(StartProtectedQueryRequest startProtectedQueryRequest); /** *

* Tags a resource. *

* * @param tagResourceRequest * @return Result of the TagResource operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws ValidationException * The input fails to satisfy the specified constraints. * @sample AWSCleanRooms.TagResource * @see AWS API * Documentation */ TagResourceResult tagResource(TagResourceRequest tagResourceRequest); /** *

* Removes a tag or list of tags from a resource. *

* * @param untagResourceRequest * @return Result of the UntagResource operation returned by the service. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws ValidationException * The input fails to satisfy the specified constraints. * @sample AWSCleanRooms.UntagResource * @see AWS API * Documentation */ UntagResourceResult untagResource(UntagResourceRequest untagResourceRequest); /** *

* Updates collaboration metadata and can only be called by the collaboration owner. *

* * @param updateCollaborationRequest * @return Result of the UpdateCollaboration operation returned by the service. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.UpdateCollaboration * @see AWS * API Documentation */ UpdateCollaborationResult updateCollaboration(UpdateCollaborationRequest updateCollaborationRequest); /** *

* Updates a configured table. *

* * @param updateConfiguredTableRequest * @return Result of the UpdateConfiguredTable operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.UpdateConfiguredTable * @see AWS API Documentation */ UpdateConfiguredTableResult updateConfiguredTable(UpdateConfiguredTableRequest updateConfiguredTableRequest); /** *

* Updates a configured table analysis rule. *

* * @param updateConfiguredTableAnalysisRuleRequest * @return Result of the UpdateConfiguredTableAnalysisRule operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.UpdateConfiguredTableAnalysisRule * @see AWS API Documentation */ UpdateConfiguredTableAnalysisRuleResult updateConfiguredTableAnalysisRule(UpdateConfiguredTableAnalysisRuleRequest updateConfiguredTableAnalysisRuleRequest); /** *

* Updates a configured table association. *

* * @param updateConfiguredTableAssociationRequest * @return Result of the UpdateConfiguredTableAssociation operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.UpdateConfiguredTableAssociation * @see AWS API Documentation */ UpdateConfiguredTableAssociationResult updateConfiguredTableAssociation(UpdateConfiguredTableAssociationRequest updateConfiguredTableAssociationRequest); /** *

* Updates a membership. *

* * @param updateMembershipRequest * @return Result of the UpdateMembership operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.UpdateMembership * @see AWS * API Documentation */ UpdateMembershipResult updateMembership(UpdateMembershipRequest updateMembershipRequest); /** *

* Updates the processing of a currently running query. *

* * @param updateProtectedQueryRequest * @return Result of the UpdateProtectedQuery operation returned by the service. * @throws ConflictException * Updating or deleting a resource can cause an inconsistent state. * @throws ResourceNotFoundException * Request references a resource which does not exist. * @throws InternalServerException * Unexpected error during processing of request. * @throws ValidationException * The input fails to satisfy the specified constraints. * @throws ThrottlingException * Request was denied due to request throttling. * @throws AccessDeniedException * Caller does not have sufficient access to perform this action. * @sample AWSCleanRooms.UpdateProtectedQuery * @see AWS API Documentation */ UpdateProtectedQueryResult updateProtectedQuery(UpdateProtectedQueryRequest updateProtectedQueryRequest); /** * Shuts down this client object, releasing any resources that might be held open. This is an optional method, and * callers are not expected to call it, but can if they want to explicitly release any open resources. Once a client * has been shutdown, it should not be used to make any more requests. */ void shutdown(); /** * Returns additional metadata for a previously executed successful request, typically used for debugging issues * where a service isn't acting as expected. This data isn't considered part of the result data returned by an * operation, so it's available through this separate, diagnostic interface. *

* Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic * information for an executed request, you should use this method to retrieve it as soon as possible after * executing a request. * * @param request * The originally executed request. * * @return The response metadata for the specified request, or null if none is available. */ ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request); }