UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

16 lines (15 loc) 665 B
import { createAggregatedClient } from "@smithy/smithy-client"; import { CreateTokenCommand } from "./commands/CreateTokenCommand"; import { CreateTokenWithIAMCommand, } from "./commands/CreateTokenWithIAMCommand"; import { RegisterClientCommand, } from "./commands/RegisterClientCommand"; import { StartDeviceAuthorizationCommand, } from "./commands/StartDeviceAuthorizationCommand"; import { SSOOIDCClient } from "./SSOOIDCClient"; const commands = { CreateTokenCommand, CreateTokenWithIAMCommand, RegisterClientCommand, StartDeviceAuthorizationCommand, }; export class SSOOIDC extends SSOOIDCClient { } createAggregatedClient(commands, SSOOIDC);