UNPKG

@softchef/cdk-iot-device-management

Version:

IoT device management is composed of things, thing types, thing groups, jobs, files API services. The constructs can be used independently, that are based on full-managed service to create an API Gateway & Lambda function.

194 lines (193 loc) 5.25 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultRegionInfoProvider = void 0; const config_resolver_1 = require("@aws-sdk/config-resolver"); const regionHash = { "ca-central-1": { variants: [ { hostname: "iot-fips.ca-central-1.amazonaws.com", tags: ["fips"], }, ], }, "us-east-1": { variants: [ { hostname: "iot-fips.us-east-1.amazonaws.com", tags: ["fips"], }, ], }, "us-east-2": { variants: [ { hostname: "iot-fips.us-east-2.amazonaws.com", tags: ["fips"], }, ], }, "us-gov-east-1": { variants: [ { hostname: "iot-fips.us-gov-east-1.amazonaws.com", tags: ["fips"], }, ], }, "us-gov-west-1": { variants: [ { hostname: "iot-fips.us-gov-west-1.amazonaws.com", tags: ["fips"], }, ], }, "us-west-1": { variants: [ { hostname: "iot-fips.us-west-1.amazonaws.com", tags: ["fips"], }, ], }, "us-west-2": { variants: [ { hostname: "iot-fips.us-west-2.amazonaws.com", tags: ["fips"], }, ], }, }; const partitionHash = { aws: { regions: [ "af-south-1", "ap-east-1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ap-southeast-3", "ca-central-1", "eu-central-1", "eu-north-1", "eu-south-1", "eu-west-1", "eu-west-2", "eu-west-3", "fips-ca-central-1", "fips-us-east-1", "fips-us-east-2", "fips-us-west-1", "fips-us-west-2", "me-south-1", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2", ], regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$", variants: [ { hostname: "iot.{region}.amazonaws.com", tags: [], }, { hostname: "iot-fips.{region}.amazonaws.com", tags: ["fips"], }, { hostname: "iot-fips.{region}.api.aws", tags: ["dualstack", "fips"], }, { hostname: "iot.{region}.api.aws", tags: ["dualstack"], }, ], }, "aws-cn": { regions: ["cn-north-1", "cn-northwest-1"], regionRegex: "^cn\\-\\w+\\-\\d+$", variants: [ { hostname: "iot.{region}.amazonaws.com.cn", tags: [], }, { hostname: "iot-fips.{region}.amazonaws.com.cn", tags: ["fips"], }, { hostname: "iot-fips.{region}.api.amazonwebservices.com.cn", tags: ["dualstack", "fips"], }, { hostname: "iot.{region}.api.amazonwebservices.com.cn", tags: ["dualstack"], }, ], }, "aws-iso": { regions: ["us-iso-east-1", "us-iso-west-1"], regionRegex: "^us\\-iso\\-\\w+\\-\\d+$", variants: [ { hostname: "iot.{region}.c2s.ic.gov", tags: [], }, { hostname: "iot-fips.{region}.c2s.ic.gov", tags: ["fips"], }, ], }, "aws-iso-b": { regions: ["us-isob-east-1"], regionRegex: "^us\\-isob\\-\\w+\\-\\d+$", variants: [ { hostname: "iot.{region}.sc2s.sgov.gov", tags: [], }, { hostname: "iot-fips.{region}.sc2s.sgov.gov", tags: ["fips"], }, ], }, "aws-us-gov": { regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"], regionRegex: "^us\\-gov\\-\\w+\\-\\d+$", variants: [ { hostname: "iot.{region}.amazonaws.com", tags: [], }, { hostname: "iot-fips.{region}.amazonaws.com", tags: ["fips"], }, { hostname: "iot-fips.{region}.api.aws", tags: ["dualstack", "fips"], }, { hostname: "iot.{region}.api.aws", tags: ["dualstack"], }, ], }, }; const defaultRegionInfoProvider = async (region, options) => config_resolver_1.getRegionInfo(region, { ...options, signingService: "execute-api", regionHash, partitionHash, }); exports.defaultRegionInfoProvider = defaultRegionInfoProvider;