import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateConfiguredAudienceModelAssociationInput, UpdateConfiguredAudienceModelAssociationOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateConfiguredAudienceModelAssociationCommand}. */ export interface UpdateConfiguredAudienceModelAssociationCommandInput extends UpdateConfiguredAudienceModelAssociationInput { } /** * @public * * The output of {@link UpdateConfiguredAudienceModelAssociationCommand}. */ export interface UpdateConfiguredAudienceModelAssociationCommandOutput extends UpdateConfiguredAudienceModelAssociationOutput, __MetadataBearer { } declare const UpdateConfiguredAudienceModelAssociationCommand_base: { new (input: UpdateConfiguredAudienceModelAssociationCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateConfiguredAudienceModelAssociationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Provides the details necessary to update a configured audience model association.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, UpdateConfiguredAudienceModelAssociationCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, UpdateConfiguredAudienceModelAssociationCommand } = 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 = { // UpdateConfiguredAudienceModelAssociationInput * configuredAudienceModelAssociationIdentifier: "STRING_VALUE", // required * membershipIdentifier: "STRING_VALUE", // required * description: "STRING_VALUE", * name: "STRING_VALUE", * }; * const command = new UpdateConfiguredAudienceModelAssociationCommand(input); * const response = await client.send(command); * // { // UpdateConfiguredAudienceModelAssociationOutput * // configuredAudienceModelAssociation: { // ConfiguredAudienceModelAssociation * // id: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // configuredAudienceModelArn: "STRING_VALUE", // required * // membershipId: "STRING_VALUE", // required * // membershipArn: "STRING_VALUE", // required * // collaborationId: "STRING_VALUE", // required * // collaborationArn: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // manageResourcePolicies: true || false, // required * // description: "STRING_VALUE", * // createTime: new Date("TIMESTAMP"), // required * // updateTime: new Date("TIMESTAMP"), // required * // }, * // }; * * ``` * * @param UpdateConfiguredAudienceModelAssociationCommandInput - {@link UpdateConfiguredAudienceModelAssociationCommandInput} * @returns {@link UpdateConfiguredAudienceModelAssociationCommandOutput} * @see {@link UpdateConfiguredAudienceModelAssociationCommandInput} for command's `input` shape. * @see {@link UpdateConfiguredAudienceModelAssociationCommandOutput} 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 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 UpdateConfiguredAudienceModelAssociationCommand extends UpdateConfiguredAudienceModelAssociationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateConfiguredAudienceModelAssociationInput; output: UpdateConfiguredAudienceModelAssociationOutput; }; sdk: { input: UpdateConfiguredAudienceModelAssociationCommandInput; output: UpdateConfiguredAudienceModelAssociationCommandOutput; }; }; }