UNPKG

@aws-amplify/graphql-api-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer.

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);