Skip to content

ListClientDevicesAssociatedWithCoreDevice

Source: src/AWS/GreengrassV2/ListClientDevicesAssociatedWithCoreDevice.ts

Runtime binding for greengrass:ListClientDevicesAssociatedWithCoreDevice.

Enumerates the client devices associated with a core device (the IoT things allowed to connect to the core’s local MQTT broker). The caller supplies the core device thing name at runtime. Provide the implementation with Effect.provide(AWS.GreengrassV2.ListClientDevicesAssociatedWithCoreDeviceHttp).

// init — account-level binding, no resource argument
const listClientDevices =
yield* AWS.GreengrassV2.ListClientDevicesAssociatedWithCoreDevice();
// runtime
const { associatedClientDevices } = yield* listClientDevices({
coreDeviceThingName: "MyCore",
});