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).
Managing Client Devices
Section titled “Managing Client Devices”// init — account-level binding, no resource argumentconst listClientDevices = yield* AWS.GreengrassV2.ListClientDevicesAssociatedWithCoreDevice();
// runtimeconst { associatedClientDevices } = yield* listClientDevices({ coreDeviceThingName: "MyCore",});