import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DetachFromIndexRequest, DetachFromIndexResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DetachFromIndexCommand}. */ export interface DetachFromIndexCommandInput extends DetachFromIndexRequest { } /** * @public * * The output of {@link DetachFromIndexCommand}. */ export interface DetachFromIndexCommandOutput extends DetachFromIndexResponse, __MetadataBearer { } declare const DetachFromIndexCommand_base: { new (input: DetachFromIndexCommandInput): import("@smithy/core/client").CommandImpl; new (input: DetachFromIndexCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Detaches the specified object from the specified index.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudDirectoryClient, DetachFromIndexCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import * // const { CloudDirectoryClient, DetachFromIndexCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import * // import type { CloudDirectoryClientConfig } from "@aws-sdk/client-clouddirectory"; * const config = {}; // type is CloudDirectoryClientConfig * const client = new CloudDirectoryClient(config); * const input = { // DetachFromIndexRequest * DirectoryArn: "STRING_VALUE", // required * IndexReference: { // ObjectReference * Selector: "STRING_VALUE", * }, * TargetReference: { * Selector: "STRING_VALUE", * }, * }; * const command = new DetachFromIndexCommand(input); * const response = await client.send(command); * // { // DetachFromIndexResponse * // DetachedObjectIdentifier: "STRING_VALUE", * // }; * * ``` * * @param DetachFromIndexCommandInput - {@link DetachFromIndexCommandInput} * @returns {@link DetachFromIndexCommandOutput} * @see {@link DetachFromIndexCommandInput} for command's `input` shape. * @see {@link DetachFromIndexCommandOutput} for command's `response` shape. * @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling ListDirectories and check your permissions.

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

Operations are only permitted on enabled directories.

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

Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the AWS Service Health Dashboard site to see if there are any operational issues with the service.

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

Indicates that the provided ARN value is not valid.

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

Indicates that limits are exceeded. See Limits for more information.

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

Indicates that the requested operation can only operate on index objects.

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

Indicates that the object is not attached to the index.

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

The specified resource could not be found.

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

Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.

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

Indicates that your request is malformed in some manner. See the exception * message.

* * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* * * @example To detach an object from an index * ```javascript * // * const input = { * DirectoryArn: "arn:aws:clouddirectory:us-west-2:45132example:directory/AYb8AOV81kHNgdj8mAO3dNY", * IndexReference: { * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TW45F26R1HTY2z-stwKBte_Q" * }, * TargetReference: { * Selector: "$AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * }; * const command = new DetachFromIndexCommand(input); * const response = await client.send(command); * /* response is * { * DetachedObjectIdentifier: "AQGG_ADlfNZBzYHY_JgDt3TWcU7IARvOTeaR09zme1sVsw" * } * *\/ * ``` * * @public */ export declare class DetachFromIndexCommand extends DetachFromIndexCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DetachFromIndexRequest; output: DetachFromIndexResponse; }; sdk: { input: DetachFromIndexCommandInput; output: DetachFromIndexCommandOutput; }; }; }