Skip to content

BatchGetStandardsControlAssociations

Source: src/AWS/SecurityHub/BatchGetStandardsControlAssociations.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).

// init — account-level binding, no resource argument
const batchGetStandardsControlAssociations = yield* AWS.SecurityHub.BatchGetStandardsControlAssociations();
// runtime
const { StandardsControlAssociationDetails } =
yield* batchGetStandardsControlAssociations({
StandardsControlAssociationIds: [
{ SecurityControlId: "IAM.1", StandardsArn: standardsArn },
],
});