Files
Media-Coding-Web/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js
2026-04-04 12:49:09 +08:00

12 lines
430 B
JavaScript

import { createAggregatedClient } from "@smithy/smithy-client";
import { AssumeRoleCommand, } from "./commands/AssumeRoleCommand";
import { AssumeRoleWithWebIdentityCommand, } from "./commands/AssumeRoleWithWebIdentityCommand";
import { STSClient } from "./STSClient";
const commands = {
AssumeRoleCommand,
AssumeRoleWithWebIdentityCommand,
};
export class STS extends STSClient {
}
createAggregatedClient(commands, STS);