import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved, } from "@aws-sdk/core/httpAuthSchemes"; import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider, } from "@smithy/types"; import { CodestarNotificationsClientResolvedConfig } from "../CodestarNotificationsClient"; export interface CodestarNotificationsHttpAuthSchemeParameters extends HttpAuthSchemeParameters { region?: string; } export interface CodestarNotificationsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider< CodestarNotificationsClientResolvedConfig, HandlerExecutionContext, CodestarNotificationsHttpAuthSchemeParameters, object > {} export declare const defaultCodestarNotificationsHttpAuthSchemeParametersProvider: ( config: CodestarNotificationsClientResolvedConfig, context: HandlerExecutionContext, input: object, ) => Promise; export interface CodestarNotificationsHttpAuthSchemeProvider extends HttpAuthSchemeProvider {} export declare const defaultCodestarNotificationsHttpAuthSchemeProvider: CodestarNotificationsHttpAuthSchemeProvider; export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig { authSchemePreference?: string[] | Provider; httpAuthSchemes?: HttpAuthScheme[]; httpAuthSchemeProvider?: CodestarNotificationsHttpAuthSchemeProvider; } export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig { readonly authSchemePreference: Provider; readonly httpAuthSchemes: HttpAuthScheme[]; readonly httpAuthSchemeProvider: CodestarNotificationsHttpAuthSchemeProvider; } export declare const resolveHttpAuthSchemeConfig: ( config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved, ) => T & HttpAuthSchemeResolvedConfig;