import type * as detective from "@distilled.cloud/aws/detective"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Graph } from "./Graph.ts"; /** * Runtime binding for `detective:UpdateOrganizationConfiguration`. * * Toggles auto-enable for new organization accounts on the behavior graph. * Callable only by the organization's delegated Detective administrator * account. The graph ARN is injected from the bound {@link Graph}. * Provide the implementation with * `Effect.provide(AWS.Detective.UpdateOrganizationConfigurationHttp)`. * ### Organization Administration * **Example:** Auto-Enable New Organization Accounts * ```typescript * // init * const updateOrganizationConfiguration = * yield* AWS.Detective.UpdateOrganizationConfiguration(graph); * * // runtime * yield* updateOrganizationConfiguration({ AutoEnable: true }); * ``` * * @binding */ export interface UpdateOrganizationConfiguration extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const UpdateOrganizationConfiguration: UpdateOrganizationConfiguration; //# sourceMappingURL=UpdateOrganizationConfiguration.d.ts.map