2025-11-13 13:13:34 -07:00

11 lines
419 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isSsoProfile = void 0;
const isSsoProfile = (arg) => arg &&
(typeof arg.sso_start_url === "string" ||
typeof arg.sso_account_id === "string" ||
typeof arg.sso_session === "string" ||
typeof arg.sso_region === "string" ||
typeof arg.sso_role_name === "string");
exports.isSsoProfile = isSsoProfile;