Files
2026-06-10 12:38:42 -03:00

10 lines
317 B
JavaScript

import { createAggregatedClient } from "@smithy/core/client";
import { GetRoleCredentialsCommand, } from "./commands/GetRoleCredentialsCommand";
import { SSOClient } from "./SSOClient";
const commands = {
GetRoleCredentialsCommand,
};
export class SSO extends SSOClient {
}
createAggregatedClient(commands, SSO);