awscdk-construct-scte-scheduler
Version:
AWS CDK Construct for scheduling SCTE-35 events using the MediaLive schedule API
13 lines (12 loc) • 564 B
TypeScript
import type { CredentialProviderOptions, RuntimeConfigIdentityProvider, TokenIdentity } from "@aws-sdk/types";
import type { SourceProfileInit } from "@smithy/core/config";
export interface FromSsoInit extends SourceProfileInit, CredentialProviderOptions {
/**
* @see SSOOIDCClientConfig in \@aws-sdk/client-sso-oidc.
*/
clientConfig?: any;
}
/**
* Creates a token provider that will read from SSO token cache or ssoOidc.createToken() call.
*/
export declare const fromSso: (init?: FromSsoInit) => RuntimeConfigIdentityProvider<TokenIdentity>;