UNPKG

cdk-iot-greengrass-fleet-provisioning

Version:

CDK Construct for AWS IoT Greengrass Fleet Provisioning (with AWS IoT Certificates)

10 lines (9 loc) 235 B
import { Provider } from "@smithy/types"; /** * @internal */ export type FromStaticConfig<T> = T | (() => T) | Provider<T>; /** * @internal */ export declare const fromStatic: <T>(defaultValue: FromStaticConfig<T>) => Provider<T>;