Effectful AWS IoT Wireless client
npm install @effect-aws/client-iot-wireless

``bash`
npm install --save @effect-aws/client-iot-wireless
With default IoTWirelessClient instance:
`typescript
import { IoTWireless } from "@effect-aws/client-iot-wireless";
const program = IoTWireless.listDestinations(args);
const result = pipe(
program,
Effect.provide(IoTWireless.defaultLayer),
Effect.runPromise,
);
`
With custom IoTWirelessClient instance:
`typescript
import { IoTWireless } from "@effect-aws/client-iot-wireless";
const program = IoTWireless.listDestinations(args);
const result = await pipe(
program,
Effect.provide(
IoTWireless.baseLayer(() => new IoTWirelessClient({ region: "eu-central-1" })),
),
Effect.runPromise,
);
`
With custom IoTWirelessClient configuration:
`typescript
import { IoTWireless } from "@effect-aws/client-iot-wireless";
const program = IoTWireless.listDestinations(args);
const result = await pipe(
program,
Effect.provide(IoTWireless.layer({ region: "eu-central-1" })),
Effect.runPromiseExit,
);
`
or use IoTWireless.baseLayer((default) => new IoTWirelessClient({ ...default, region: "eu-central-1" }))`