import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import type { DisableFederationRequest, DisableFederationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DisableFederationCommand}. */ export interface DisableFederationCommandInput extends DisableFederationRequest { } /** * @public * * The output of {@link DisableFederationCommand}. */ export interface DisableFederationCommandOutput extends DisableFederationResponse, __MetadataBearer { } declare const DisableFederationCommand_base: { new (input: DisableFederationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DisableFederationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

* Disables Lake query federation on the specified event data store. When you disable federation, CloudTrail disables * the integration with Glue, Lake Formation, and Amazon Athena. * After disabling Lake query federation, you can no longer query your event data in Amazon Athena.

*

No CloudTrail Lake data is deleted when you disable federation and you can continue to run queries in CloudTrail Lake.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudTrailClient, DisableFederationCommand } from "@aws-sdk/client-cloudtrail"; // ES Modules import * // const { CloudTrailClient, DisableFederationCommand } = require("@aws-sdk/client-cloudtrail"); // CommonJS import * // import type { CloudTrailClientConfig } from "@aws-sdk/client-cloudtrail"; * const config = {}; // type is CloudTrailClientConfig * const client = new CloudTrailClient(config); * const input = { // DisableFederationRequest * EventDataStore: "STRING_VALUE", // required * }; * const command = new DisableFederationCommand(input); * const response = await client.send(command); * // { // DisableFederationResponse * // EventDataStoreArn: "STRING_VALUE", * // FederationStatus: "ENABLING" || "ENABLED" || "DISABLING" || "DISABLED", * // }; * * ``` * * @param DisableFederationCommandInput - {@link DisableFederationCommandInput} * @returns {@link DisableFederationCommandOutput} * @see {@link DisableFederationCommandInput} for command's `input` shape. * @see {@link DisableFederationCommandOutput} for command's `response` shape. * @see {@link CloudTrailClientResolvedConfig | config} for CloudTrailClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

* You do not have sufficient access to perform this action. *

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

This exception is thrown when trusted access has not been enabled between CloudTrail and Organizations. For more information, see How to enable or disable trusted access in the Organizations User Guide and Prepare For Creating a Trail For Your Organization in the CloudTrail User Guide.

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

* You are trying to update a resource when another request is in progress. Allow sufficient wait time for the previous request to complete, then retry your request. *

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

The specified event data store ARN is not valid or does not map to an event data store * in your account.

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

The specified event data store was not found.

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

The event data store is inactive.

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

This exception is thrown when the IAM identity that is used to create * the organization resource lacks one or more required permissions for creating an * organization resource in a required service.

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

The request includes a parameter that is not valid.

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

This exception is thrown when the management account does not have a service-linked * role.

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

This exception is thrown when the Amazon Web Services account making the request to * create or update an organization trail or event data store is not the management account * for an organization in Organizations. For more information, see Prepare For Creating a Trail For Your Organization or Organization event data stores.

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

This exception is thrown when the requested operation is not permitted.

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

This exception is thrown when Organizations is not configured to support all * features. All features must be enabled in Organizations to support creating an * organization trail or event data store.

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

This exception is thrown when the request is made from an Amazon Web Services account * that is not a member of an organization. To make this request, sign in using the * credentials of an account that belongs to an organization.

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

This exception is thrown when the requested operation is not supported.

* * @throws {@link CloudTrailServiceException} *

Base exception class for all service exceptions from CloudTrail service.

* * * @public */ export declare class DisableFederationCommand extends DisableFederationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DisableFederationRequest; output: DisableFederationResponse; }; sdk: { input: DisableFederationCommandInput; output: DisableFederationCommandOutput; }; }; }