import type * as aa from "@distilled.cloud/aws/accessanalyzer"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Analyzer } from "./Analyzer.ts"; /** `ListAnalyzedResources` request with `analyzerArn` injected from the bound {@link Analyzer}. */ export interface ListAnalyzedResourcesRequest extends Omit { } /** * Runtime binding for `access-analyzer:ListAnalyzedResources`. * * Lists the resources the analyzer has scanned, optionally filtered by * resource type. Provide the implementation with * `Effect.provide(AWS.AccessAnalyzer.ListAnalyzedResourcesHttp)`. * ### Scanning Resources * **Example:** List Analyzed S3 Buckets * ```typescript * const listResources = * yield* AWS.AccessAnalyzer.ListAnalyzedResources(analyzer); * const page = yield* listResources({ * resourceType: "AWS::S3::Bucket", * }); * ``` * * @binding */ export interface ListAnalyzedResources extends Binding.Service Effect.Effect<(request?: ListAnalyzedResourcesRequest) => Effect.Effect>> { } export declare const ListAnalyzedResources: ListAnalyzedResources; //# sourceMappingURL=ListAnalyzedResources.d.ts.map