import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateConfiguredTableAssociationAnalysisRuleInput, UpdateConfiguredTableAssociationAnalysisRuleOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateConfiguredTableAssociationAnalysisRuleCommand}. */ export interface UpdateConfiguredTableAssociationAnalysisRuleCommandInput extends UpdateConfiguredTableAssociationAnalysisRuleInput { } /** * @public * * The output of {@link UpdateConfiguredTableAssociationAnalysisRuleCommand}. */ export interface UpdateConfiguredTableAssociationAnalysisRuleCommandOutput extends UpdateConfiguredTableAssociationAnalysisRuleOutput, __MetadataBearer { } declare const UpdateConfiguredTableAssociationAnalysisRuleCommand_base: { new (input: UpdateConfiguredTableAssociationAnalysisRuleCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateConfiguredTableAssociationAnalysisRuleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates the analysis rule for a configured table association.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, UpdateConfiguredTableAssociationAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, UpdateConfiguredTableAssociationAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import * // import type { CleanRoomsClientConfig } from "@aws-sdk/client-cleanrooms"; * const config = {}; // type is CleanRoomsClientConfig * const client = new CleanRoomsClient(config); * const input = { // UpdateConfiguredTableAssociationAnalysisRuleInput * membershipIdentifier: "STRING_VALUE", // required * configuredTableAssociationIdentifier: "STRING_VALUE", // required * analysisRuleType: "AGGREGATION" || "LIST" || "CUSTOM", // required * analysisRulePolicy: { // ConfiguredTableAssociationAnalysisRulePolicy Union: only one key present * v1: { // ConfiguredTableAssociationAnalysisRulePolicyV1 Union: only one key present * list: { // ConfiguredTableAssociationAnalysisRuleList * allowedResultReceivers: [ // AllowedResultReceivers * "STRING_VALUE", * ], * allowedAdditionalAnalyses: [ // AllowedAdditionalAnalyses * "STRING_VALUE", * ], * }, * aggregation: { // ConfiguredTableAssociationAnalysisRuleAggregation * allowedResultReceivers: [ * "STRING_VALUE", * ], * allowedAdditionalAnalyses: [ * "STRING_VALUE", * ], * }, * custom: { // ConfiguredTableAssociationAnalysisRuleCustom * allowedResultReceivers: [ * "STRING_VALUE", * ], * allowedAdditionalAnalyses: [ * "STRING_VALUE", * ], * }, * }, * }, * }; * const command = new UpdateConfiguredTableAssociationAnalysisRuleCommand(input); * const response = await client.send(command); * // { // UpdateConfiguredTableAssociationAnalysisRuleOutput * // analysisRule: { // ConfiguredTableAssociationAnalysisRule * // membershipIdentifier: "STRING_VALUE", // required * // configuredTableAssociationId: "STRING_VALUE", // required * // configuredTableAssociationArn: "STRING_VALUE", // required * // policy: { // ConfiguredTableAssociationAnalysisRulePolicy Union: only one key present * // v1: { // ConfiguredTableAssociationAnalysisRulePolicyV1 Union: only one key present * // list: { // ConfiguredTableAssociationAnalysisRuleList * // allowedResultReceivers: [ // AllowedResultReceivers * // "STRING_VALUE", * // ], * // allowedAdditionalAnalyses: [ // AllowedAdditionalAnalyses * // "STRING_VALUE", * // ], * // }, * // aggregation: { // ConfiguredTableAssociationAnalysisRuleAggregation * // allowedResultReceivers: [ * // "STRING_VALUE", * // ], * // allowedAdditionalAnalyses: [ * // "STRING_VALUE", * // ], * // }, * // custom: { // ConfiguredTableAssociationAnalysisRuleCustom * // allowedResultReceivers: [ * // "STRING_VALUE", * // ], * // allowedAdditionalAnalyses: [ * // "STRING_VALUE", * // ], * // }, * // }, * // }, * // type: "AGGREGATION" || "LIST" || "CUSTOM", // required * // createTime: new Date("TIMESTAMP"), // required * // updateTime: new Date("TIMESTAMP"), // required * // }, * // }; * * ``` * * @param UpdateConfiguredTableAssociationAnalysisRuleCommandInput - {@link UpdateConfiguredTableAssociationAnalysisRuleCommandInput} * @returns {@link UpdateConfiguredTableAssociationAnalysisRuleCommandOutput} * @see {@link UpdateConfiguredTableAssociationAnalysisRuleCommandInput} for command's `input` shape. * @see {@link UpdateConfiguredTableAssociationAnalysisRuleCommandOutput} for command's `response` shape. * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Caller does not have sufficient access to perform this action.

* * @throws {@link ConflictException} (client fault) *

Updating or deleting a resource can cause an inconsistent state.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error during processing of request.

* * @throws {@link ResourceNotFoundException} (client fault) *

Request references a resource which does not exist.

* * @throws {@link ThrottlingException} (client fault) *

Request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the specified constraints.

* * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* * * @public */ export declare class UpdateConfiguredTableAssociationAnalysisRuleCommand extends UpdateConfiguredTableAssociationAnalysisRuleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateConfiguredTableAssociationAnalysisRuleInput; output: UpdateConfiguredTableAssociationAnalysisRuleOutput; }; sdk: { input: UpdateConfiguredTableAssociationAnalysisRuleCommandInput; output: UpdateConfiguredTableAssociationAnalysisRuleCommandOutput; }; }; }