@aws-sdk/nested-clients 3.996.0 → 3.996.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cognito-identity.d.ts +7 -0
- package/cognito-identity.js +5 -0
- package/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +60 -0
- package/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +146 -0
- package/dist-cjs/submodules/cognito-identity/index.js +174 -0
- package/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +12 -0
- package/dist-cjs/submodules/cognito-identity/models/errors.js +121 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +38 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.js +53 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +15 -0
- package/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +50 -0
- package/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +110 -0
- package/dist-cjs/submodules/signin/endpoint/ruleset.js +128 -2
- package/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +56 -0
- package/dist-cjs/submodules/sso/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/submodules/sso/endpoint/ruleset.js +106 -0
- package/dist-cjs/submodules/sso/index.js +160 -0
- package/dist-cjs/submodules/sso/models/SSOServiceException.js +12 -0
- package/dist-cjs/submodules/sso/models/errors.js +56 -0
- package/dist-cjs/submodules/sso/runtimeConfig.browser.js +38 -0
- package/dist-cjs/submodules/sso/runtimeConfig.js +53 -0
- package/dist-cjs/submodules/sso/runtimeConfig.native.js +15 -0
- package/dist-cjs/submodules/sso/runtimeConfig.shared.js +49 -0
- package/dist-cjs/submodules/sso/schemas/schemas_0.js +90 -0
- package/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +101 -2
- package/dist-cjs/submodules/sts/endpoint/ruleset.js +140 -2
- package/dist-es/submodules/cognito-identity/CognitoIdentity.js +11 -0
- package/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +50 -0
- package/dist-es/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +54 -0
- package/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +16 -0
- package/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +16 -0
- package/dist-es/submodules/cognito-identity/commands/index.js +2 -0
- package/dist-es/submodules/cognito-identity/endpoint/EndpointParameters.js +13 -0
- package/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +14 -0
- package/dist-es/submodules/cognito-identity/endpoint/ruleset.js +143 -0
- package/dist-es/submodules/cognito-identity/extensionConfiguration.js +1 -0
- package/dist-es/submodules/cognito-identity/index.js +7 -0
- package/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +8 -0
- package/dist-es/submodules/cognito-identity/models/errors.js +109 -0
- package/dist-es/submodules/cognito-identity/models/models_0.js +1 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +33 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.js +48 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.native.js +11 -0
- package/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +46 -0
- package/dist-es/submodules/cognito-identity/runtimeExtensions.js +9 -0
- package/dist-es/submodules/cognito-identity/schemas/schemas_0.js +107 -0
- package/dist-es/submodules/signin/Signin.js +1 -1
- package/dist-es/submodules/signin/endpoint/ruleset.js +128 -2
- package/dist-es/submodules/sso/SSO.js +9 -0
- package/dist-es/submodules/sso/SSOClient.js +50 -0
- package/dist-es/submodules/sso/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +50 -0
- package/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +16 -0
- package/dist-es/submodules/sso/commands/index.js +1 -0
- package/dist-es/submodules/sso/endpoint/EndpointParameters.js +13 -0
- package/dist-es/submodules/sso/endpoint/endpointResolver.js +14 -0
- package/dist-es/submodules/sso/endpoint/ruleset.js +103 -0
- package/dist-es/submodules/sso/extensionConfiguration.js +1 -0
- package/dist-es/submodules/sso/index.js +7 -0
- package/dist-es/submodules/sso/models/SSOServiceException.js +8 -0
- package/dist-es/submodules/sso/models/errors.js +49 -0
- package/dist-es/submodules/sso/models/models_0.js +1 -0
- package/dist-es/submodules/sso/runtimeConfig.browser.js +33 -0
- package/dist-es/submodules/sso/runtimeConfig.js +48 -0
- package/dist-es/submodules/sso/runtimeConfig.native.js +11 -0
- package/dist-es/submodules/sso/runtimeConfig.shared.js +45 -0
- package/dist-es/submodules/sso/runtimeExtensions.js +9 -0
- package/dist-es/submodules/sso/schemas/schemas_0.js +87 -0
- package/dist-es/submodules/sso-oidc/endpoint/ruleset.js +101 -2
- package/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -1
- package/dist-es/submodules/sts/endpoint/ruleset.js +140 -2
- package/dist-types/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +198 -0
- package/dist-types/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/dist-types/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +120 -0
- package/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +107 -0
- package/dist-types/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/dist-types/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +2 -0
- package/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/dist-types/submodules/cognito-identity/index.d.ts +29 -0
- package/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +14 -0
- package/dist-types/submodules/cognito-identity/models/errors.d.ts +119 -0
- package/dist-types/submodules/cognito-identity/models/models_0.d.ts +136 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +62 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +62 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +61 -0
- package/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +38 -0
- package/dist-types/submodules/cognito-identity/runtimeExtensions.d.ts +17 -0
- package/dist-types/submodules/cognito-identity/schemas/schemas_0.d.ts +25 -0
- package/dist-types/submodules/signin/Signin.d.ts +1 -1
- package/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +2 -1
- package/dist-types/submodules/signin/endpoint/ruleset.d.ts +1 -1
- package/dist-types/submodules/signin/models/errors.d.ts +1 -1
- package/dist-types/submodules/sso/SSO.d.ts +32 -0
- package/dist-types/submodules/sso/SSOClient.d.ts +198 -0
- package/dist-types/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +30 -0
- package/dist-types/submodules/sso/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/dist-types/submodules/sso/commands/index.d.ts +1 -0
- package/dist-types/submodules/sso/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/submodules/sso/endpoint/ruleset.d.ts +2 -0
- package/dist-types/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/dist-types/submodules/sso/index.d.ts +30 -0
- package/dist-types/submodules/sso/models/SSOServiceException.d.ts +14 -0
- package/dist-types/submodules/sso/models/errors.d.ts +53 -0
- package/dist-types/submodules/sso/models/models_0.d.ts +61 -0
- package/dist-types/submodules/sso/runtimeConfig.browser.d.ts +62 -0
- package/dist-types/submodules/sso/runtimeConfig.d.ts +62 -0
- package/dist-types/submodules/sso/runtimeConfig.native.d.ts +61 -0
- package/dist-types/submodules/sso/runtimeConfig.shared.d.ts +38 -0
- package/dist-types/submodules/sso/runtimeExtensions.d.ts +17 -0
- package/dist-types/submodules/sso/schemas/schemas_0.d.ts +17 -0
- package/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +2 -1
- package/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +1 -1
- package/dist-types/submodules/sso-oidc/models/errors.d.ts +1 -1
- package/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +2 -1
- package/dist-types/submodules/sts/defaultRoleAssumers.d.ts +3 -3
- package/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +3 -3
- package/dist-types/submodules/sts/endpoint/ruleset.d.ts +1 -1
- package/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +126 -0
- package/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +41 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +10 -0
- package/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +9 -0
- package/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +68 -0
- package/dist-types/ts3.4/submodules/cognito-identity/models/models_0.d.ts +23 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +122 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +117 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +126 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +60 -0
- package/dist-types/ts3.4/submodules/cognito-identity/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/submodules/cognito-identity/schemas/schemas_0.d.ts +24 -0
- package/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sso/SSO.d.ts +22 -0
- package/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +117 -0
- package/dist-types/ts3.4/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/submodules/sso/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +47 -0
- package/dist-types/ts3.4/submodules/sso/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sso/index.d.ts +10 -0
- package/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sso/models/errors.d.ts +30 -0
- package/dist-types/ts3.4/submodules/sso/models/models_0.d.ts +14 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +120 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +115 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +124 -0
- package/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +58 -0
- package/dist-types/ts3.4/submodules/sso/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/submodules/sso/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/package.json +54 -36
- package/sso.d.ts +7 -0
- package/sso.js +5 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CognitoIdentityExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: CognitoIdentityExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import {
|
|
3
|
+
StaticErrorSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var CognitoIdentityServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var ExternalServiceException$: StaticErrorSchema;
|
|
9
|
+
export declare var InternalErrorException$: StaticErrorSchema;
|
|
10
|
+
export declare var InvalidIdentityPoolConfigurationException$: StaticErrorSchema;
|
|
11
|
+
export declare var InvalidParameterException$: StaticErrorSchema;
|
|
12
|
+
export declare var LimitExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var NotAuthorizedException$: StaticErrorSchema;
|
|
14
|
+
export declare var ResourceConflictException$: StaticErrorSchema;
|
|
15
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
16
|
+
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
17
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
18
|
+
export declare var Credentials$: StaticStructureSchema;
|
|
19
|
+
export declare var GetCredentialsForIdentityInput$: StaticStructureSchema;
|
|
20
|
+
export declare var GetCredentialsForIdentityResponse$: StaticStructureSchema;
|
|
21
|
+
export declare var GetIdInput$: StaticStructureSchema;
|
|
22
|
+
export declare var GetIdResponse$: StaticStructureSchema;
|
|
23
|
+
export declare var GetCredentialsForIdentity$: StaticOperationSchema;
|
|
24
|
+
export declare var GetId$: StaticOperationSchema;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
|
-
HttpAuthScheme,
|
|
3
2
|
AwsCredentialIdentity,
|
|
4
3
|
AwsCredentialIdentityProvider,
|
|
5
4
|
} from "@smithy/types";
|
|
5
|
+
import { HttpAuthScheme } from "@smithy/types";
|
|
6
6
|
import { SigninHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetRoleCredentialsCommandInput,
|
|
4
|
+
GetRoleCredentialsCommandOutput,
|
|
5
|
+
} from "./commands/GetRoleCredentialsCommand";
|
|
6
|
+
import { SSOClient } from "./SSOClient";
|
|
7
|
+
export interface SSO {
|
|
8
|
+
getRoleCredentials(
|
|
9
|
+
args: GetRoleCredentialsCommandInput,
|
|
10
|
+
options?: __HttpHandlerOptions
|
|
11
|
+
): Promise<GetRoleCredentialsCommandOutput>;
|
|
12
|
+
getRoleCredentials(
|
|
13
|
+
args: GetRoleCredentialsCommandInput,
|
|
14
|
+
cb: (err: any, data?: GetRoleCredentialsCommandOutput) => void
|
|
15
|
+
): void;
|
|
16
|
+
getRoleCredentials(
|
|
17
|
+
args: GetRoleCredentialsCommandInput,
|
|
18
|
+
options: __HttpHandlerOptions,
|
|
19
|
+
cb: (err: any, data?: GetRoleCredentialsCommandOutput) => void
|
|
20
|
+
): void;
|
|
21
|
+
}
|
|
22
|
+
export declare class SSO extends SSOClient implements SSO {}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
DefaultsMode as __DefaultsMode,
|
|
24
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
25
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
26
|
+
Client as __Client,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import { Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
29
|
+
import {
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
StreamCollector as __StreamCollector,
|
|
40
|
+
UrlParser as __UrlParser,
|
|
41
|
+
} from "@smithy/types";
|
|
42
|
+
import {
|
|
43
|
+
HttpAuthSchemeInputConfig,
|
|
44
|
+
HttpAuthSchemeResolvedConfig,
|
|
45
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
46
|
+
import {
|
|
47
|
+
GetRoleCredentialsCommandInput,
|
|
48
|
+
GetRoleCredentialsCommandOutput,
|
|
49
|
+
} from "./commands/GetRoleCredentialsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ClientInputEndpointParameters,
|
|
52
|
+
ClientResolvedEndpointParameters,
|
|
53
|
+
EndpointParameters,
|
|
54
|
+
} from "./endpoint/EndpointParameters";
|
|
55
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
56
|
+
export { __Client };
|
|
57
|
+
export type ServiceInputTypes = GetRoleCredentialsCommandInput;
|
|
58
|
+
export type ServiceOutputTypes = GetRoleCredentialsCommandOutput;
|
|
59
|
+
export interface ClientDefaults
|
|
60
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
61
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
62
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
63
|
+
urlParser?: __UrlParser;
|
|
64
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
65
|
+
streamCollector?: __StreamCollector;
|
|
66
|
+
base64Decoder?: __Decoder;
|
|
67
|
+
base64Encoder?: __Encoder;
|
|
68
|
+
utf8Decoder?: __Decoder;
|
|
69
|
+
utf8Encoder?: __Encoder;
|
|
70
|
+
runtime?: string;
|
|
71
|
+
disableHostPrefix?: boolean;
|
|
72
|
+
serviceId?: string;
|
|
73
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
74
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
75
|
+
region?: string | __Provider<string>;
|
|
76
|
+
profile?: string;
|
|
77
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
78
|
+
maxAttempts?: number | __Provider<number>;
|
|
79
|
+
retryMode?: string | __Provider<string>;
|
|
80
|
+
logger?: __Logger;
|
|
81
|
+
extensions?: RuntimeExtension[];
|
|
82
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
83
|
+
}
|
|
84
|
+
export type SSOClientConfigType = Partial<
|
|
85
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
86
|
+
> &
|
|
87
|
+
ClientDefaults &
|
|
88
|
+
UserAgentInputConfig &
|
|
89
|
+
RetryInputConfig &
|
|
90
|
+
RegionInputConfig &
|
|
91
|
+
HostHeaderInputConfig &
|
|
92
|
+
EndpointInputConfig<EndpointParameters> &
|
|
93
|
+
HttpAuthSchemeInputConfig &
|
|
94
|
+
ClientInputEndpointParameters;
|
|
95
|
+
export interface SSOClientConfig extends SSOClientConfigType {}
|
|
96
|
+
export type SSOClientResolvedConfigType =
|
|
97
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
98
|
+
Required<ClientDefaults> &
|
|
99
|
+
RuntimeExtensionsConfig &
|
|
100
|
+
UserAgentResolvedConfig &
|
|
101
|
+
RetryResolvedConfig &
|
|
102
|
+
RegionResolvedConfig &
|
|
103
|
+
HostHeaderResolvedConfig &
|
|
104
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
105
|
+
HttpAuthSchemeResolvedConfig &
|
|
106
|
+
ClientResolvedEndpointParameters;
|
|
107
|
+
export interface SSOClientResolvedConfig extends SSOClientResolvedConfigType {}
|
|
108
|
+
export declare class SSOClient extends __Client<
|
|
109
|
+
__HttpHandlerOptions,
|
|
110
|
+
ServiceInputTypes,
|
|
111
|
+
ServiceOutputTypes,
|
|
112
|
+
SSOClientResolvedConfig
|
|
113
|
+
> {
|
|
114
|
+
readonly config: SSOClientResolvedConfig;
|
|
115
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<SSOClientConfig>);
|
|
116
|
+
destroy(): void;
|
|
117
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
} from "@smithy/types";
|
|
5
|
+
import { HttpAuthScheme } from "@smithy/types";
|
|
6
|
+
import { SSOHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: SSOHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): SSOHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: SSOHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { SSOClientResolvedConfig } from "../SSOClient";
|
|
15
|
+
export interface SSOHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
|
+
region?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface SSOHttpAuthSchemeParametersProvider
|
|
19
|
+
extends HttpAuthSchemeParametersProvider<
|
|
20
|
+
SSOClientResolvedConfig,
|
|
21
|
+
HandlerExecutionContext,
|
|
22
|
+
SSOHttpAuthSchemeParameters,
|
|
23
|
+
object
|
|
24
|
+
> {}
|
|
25
|
+
export declare const defaultSSOHttpAuthSchemeParametersProvider: (
|
|
26
|
+
config: SSOClientResolvedConfig,
|
|
27
|
+
context: HandlerExecutionContext,
|
|
28
|
+
input: object
|
|
29
|
+
) => Promise<SSOHttpAuthSchemeParameters>;
|
|
30
|
+
export interface SSOHttpAuthSchemeProvider
|
|
31
|
+
extends HttpAuthSchemeProvider<SSOHttpAuthSchemeParameters> {}
|
|
32
|
+
export declare const defaultSSOHttpAuthSchemeProvider: SSOHttpAuthSchemeProvider;
|
|
33
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
|
+
httpAuthSchemeProvider?: SSOHttpAuthSchemeProvider;
|
|
37
|
+
}
|
|
38
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
41
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
|
+
readonly httpAuthSchemeProvider: SSOHttpAuthSchemeProvider;
|
|
43
|
+
}
|
|
44
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
46
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetRoleCredentialsRequest,
|
|
5
|
+
GetRoleCredentialsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import { SSOClientResolvedConfig } from "../SSOClient";
|
|
8
|
+
export { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
export interface GetRoleCredentialsCommandInput
|
|
11
|
+
extends GetRoleCredentialsRequest {}
|
|
12
|
+
export interface GetRoleCredentialsCommandOutput
|
|
13
|
+
extends GetRoleCredentialsResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetRoleCredentialsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetRoleCredentialsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetRoleCredentialsCommandInput,
|
|
20
|
+
GetRoleCredentialsCommandOutput,
|
|
21
|
+
SSOClientResolvedConfig,
|
|
22
|
+
GetRoleCredentialsCommandInput,
|
|
23
|
+
GetRoleCredentialsCommandOutput
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetRoleCredentialsCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetRoleCredentialsCommandInput,
|
|
29
|
+
GetRoleCredentialsCommandOutput,
|
|
30
|
+
SSOClientResolvedConfig,
|
|
31
|
+
GetRoleCredentialsCommandInput,
|
|
32
|
+
GetRoleCredentialsCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetRoleCredentialsCommand extends GetRoleCredentialsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetRoleCredentialsRequest;
|
|
40
|
+
output: GetRoleCredentialsResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetRoleCredentialsCommandInput;
|
|
44
|
+
output: GetRoleCredentialsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./GetRoleCredentialsCommand";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
9
|
+
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
10
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
20
|
+
ClientInputEndpointParameters,
|
|
21
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
22
|
+
> & {
|
|
23
|
+
defaultSigningName: string;
|
|
24
|
+
};
|
|
25
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
+
options: T & ClientInputEndpointParameters
|
|
27
|
+
) => T & ClientResolvedEndpointParameters;
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
47
|
+
Region?: string | undefined;
|
|
48
|
+
UseDualStack?: boolean | undefined;
|
|
49
|
+
UseFIPS?: boolean | undefined;
|
|
50
|
+
Endpoint?: string | undefined;
|
|
51
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface SSOExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./SSOClient";
|
|
2
|
+
export * from "./SSO";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { SSOExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
10
|
+
export { SSOServiceException } from "./models/SSOServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
3
|
+
ServiceException as __ServiceException,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class SSOServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SSOServiceException as __BaseException } from "./SSOServiceException";
|
|
3
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
4
|
+
readonly name: "InvalidRequestException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
11
|
+
readonly name: "ResourceNotFoundException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
18
|
+
readonly name: "TooManyRequestsException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
25
|
+
readonly name: "UnauthorizedException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface GetRoleCredentialsRequest {
|
|
2
|
+
roleName: string | undefined;
|
|
3
|
+
accountId: string | undefined;
|
|
4
|
+
accessToken: string | undefined;
|
|
5
|
+
}
|
|
6
|
+
export interface RoleCredentials {
|
|
7
|
+
accessKeyId?: string | undefined;
|
|
8
|
+
secretAccessKey?: string | undefined;
|
|
9
|
+
sessionToken?: string | undefined;
|
|
10
|
+
expiration?: number | undefined;
|
|
11
|
+
}
|
|
12
|
+
export interface GetRoleCredentialsResponse {
|
|
13
|
+
roleCredentials?: RoleCredentials | undefined;
|
|
14
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { SSOClientConfig } from "./SSOClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: SSOClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
defaultUserAgentProvider: (
|
|
10
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
11
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler:
|
|
15
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
16
|
+
| RequestHandler;
|
|
17
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
18
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
19
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
20
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
21
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
23
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
24
|
+
cacheMiddleware?: boolean | undefined;
|
|
25
|
+
protocol:
|
|
26
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
27
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
28
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
29
|
+
protocolSettings: {
|
|
30
|
+
defaultNamespace?: string;
|
|
31
|
+
[setting: string]: unknown;
|
|
32
|
+
};
|
|
33
|
+
apiVersion: string;
|
|
34
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
35
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
37
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
38
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
profile?: string;
|
|
42
|
+
logger: import("@smithy/types").Logger;
|
|
43
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
44
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
|
+
userAgentAppId?:
|
|
46
|
+
| string
|
|
47
|
+
| undefined
|
|
48
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?:
|
|
50
|
+
| import("@smithy/types").RetryStrategy
|
|
51
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
endpoint?:
|
|
53
|
+
| ((
|
|
54
|
+
| string
|
|
55
|
+
| import("@smithy/types").Endpoint
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
57
|
+
| import("@smithy/types").EndpointV2
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
59
|
+
) &
|
|
60
|
+
(
|
|
61
|
+
| string
|
|
62
|
+
| import("@smithy/types").Provider<string>
|
|
63
|
+
| import("@smithy/types").Endpoint
|
|
64
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
65
|
+
| import("@smithy/types").EndpointV2
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
67
|
+
))
|
|
68
|
+
| undefined;
|
|
69
|
+
endpointProvider: (
|
|
70
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
71
|
+
context?: {
|
|
72
|
+
logger?: import("@smithy/types").Logger;
|
|
73
|
+
}
|
|
74
|
+
) => import("@smithy/types").EndpointV2;
|
|
75
|
+
tls?: boolean;
|
|
76
|
+
serviceConfiguredEndpoint?: never;
|
|
77
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
78
|
+
httpAuthSchemes:
|
|
79
|
+
| import("@smithy/types").HttpAuthScheme[]
|
|
80
|
+
| (
|
|
81
|
+
| {
|
|
82
|
+
schemeId: string;
|
|
83
|
+
identityProvider: (
|
|
84
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
85
|
+
) =>
|
|
86
|
+
| import("@smithy/types").IdentityProvider<
|
|
87
|
+
import("@smithy/types").Identity
|
|
88
|
+
>
|
|
89
|
+
| undefined;
|
|
90
|
+
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
|
91
|
+
}
|
|
92
|
+
| {
|
|
93
|
+
schemeId: string;
|
|
94
|
+
identityProvider: (
|
|
95
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
96
|
+
) =>
|
|
97
|
+
| import("@smithy/types").IdentityProvider<
|
|
98
|
+
import("@smithy/types").Identity
|
|
99
|
+
>
|
|
100
|
+
| (() => Promise<{}>);
|
|
101
|
+
signer: import("@smithy/core").NoAuthSigner;
|
|
102
|
+
}
|
|
103
|
+
)[];
|
|
104
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOHttpAuthSchemeProvider;
|
|
105
|
+
credentials?:
|
|
106
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
107
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
108
|
+
signer?:
|
|
109
|
+
| import("@smithy/types").RequestSigner
|
|
110
|
+
| ((
|
|
111
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
112
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
113
|
+
signingEscapePath?: boolean;
|
|
114
|
+
systemClockOffset?: number;
|
|
115
|
+
signingRegion?: string;
|
|
116
|
+
signerConstructor?: new (
|
|
117
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
118
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
119
|
+
) => import("@smithy/types").RequestSigner;
|
|
120
|
+
};
|