UNPKG

cdk-rds-sql

Version:

A CDK construct that allows creating roles and databases an on Aurora Serverless Postgresql cluster.

9 lines (8 loc) 417 B
import { CredentialProviderOptions, TokenIdentityProvider } from "@aws-sdk/types"; import { SourceProfileInit } from "@smithy/shared-ini-file-loader"; export interface FromSsoInit extends SourceProfileInit, CredentialProviderOptions { } /** * Creates a token provider that will read from SSO token cache or ssoOidc.createToken() call. */ export declare const fromSso: (init?: FromSsoInit) => TokenIdentityProvider;