UNPKG

cdk-iot-greengrass-fleet-provisioning

Version:

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

10 lines (9 loc) 206 B
export class NumericValue { constructor(string, type) { this.string = string; this.type = type; } } export function nv(string) { return new NumericValue(string, "bigDecimal"); }