Skip to content

ListResourceSetResources

Source: src/AWS/FMS/ListResourceSetResources.ts

Runtime binding for fms:ListResourceSetResources.

Returns an array of the resources associated with the specified Firewall Manager resource set. Provide the implementation with Effect.provide(AWS.FMS.ListResourceSetResourcesHttp).

// init — account-level binding takes no resource
const listResourceSetResources = yield* AWS.FMS.ListResourceSetResources();
// runtime
const result = yield* listResourceSetResources({ Identifier: resourceSetId });
console.log(result.Items.length);