import type * as shield from "@distilled.cloud/aws/shield"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `shield:DescribeAttack`. * * Hydrates the full detail document of a DDoS attack (vectors, counters, * mitigations, sub-resources) from an attack id surfaced by * {@link ListAttacks}. Requires an active Shield Advanced subscription; a * nonexistent attack id answers with an empty document or the typed * `AccessDeniedException`. * Provide the implementation with * `Effect.provide(AWS.Shield.DescribeAttackHttp)`. * ### Attack Visibility * **Example:** Hydrate Attack Details * ```typescript * // init — account-level binding, no resource argument * const describeAttack = yield* AWS.Shield.DescribeAttack(); * * // runtime * const { Attack } = yield* describeAttack({ AttackId: attackId }); * ``` * * @binding */ export interface DescribeAttack extends Binding.Service Effect.Effect<(request: shield.DescribeAttackRequest) => Effect.Effect>> { } export declare const DescribeAttack: DescribeAttack; //# sourceMappingURL=DescribeAttack.d.ts.map