21 lines
908 B
JavaScript
21 lines
908 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
||
|
const resolveClientEndpointParameters = (options) => {
|
||
|
return {
|
||
|
...options,
|
||
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
||
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
||
|
useGlobalEndpoint: options.useGlobalEndpoint ?? false,
|
||
|
defaultSigningName: "sts",
|
||
|
};
|
||
|
};
|
||
|
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
||
|
exports.commonParams = {
|
||
|
UseGlobalEndpoint: { type: "builtInParams", name: "useGlobalEndpoint" },
|
||
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
||
|
Endpoint: { type: "builtInParams", name: "endpoint" },
|
||
|
Region: { type: "builtInParams", name: "region" },
|
||
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
||
|
};
|