import type * as securityhub from "@distilled.cloud/aws/securityhub"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `securityhub:BatchGetStandardsControlAssociations`. * * Returns the enablement status of a batch of controls within specific standards. * Account-level operation — invoked with the caller's request as-is. * Provide the implementation with * `Effect.provide(AWS.SecurityHub.BatchGetStandardsControlAssociationsHttp)`. * ### Standards & Controls * **Example:** Read Control Associations * ```typescript * // init — account-level binding, no resource argument * const batchGetStandardsControlAssociations = yield* AWS.SecurityHub.BatchGetStandardsControlAssociations(); * * // runtime * const { StandardsControlAssociationDetails } = * yield* batchGetStandardsControlAssociations({ * StandardsControlAssociationIds: [ * { SecurityControlId: "IAM.1", StandardsArn: standardsArn }, * ], * }); * ``` * * @binding */ export interface BatchGetStandardsControlAssociations extends Binding.Service Effect.Effect<(request?: securityhub.BatchGetStandardsControlAssociationsRequest) => Effect.Effect>> { } export declare const BatchGetStandardsControlAssociations: BatchGetStandardsControlAssociations; //# sourceMappingURL=BatchGetStandardsControlAssociations.d.ts.map