@aws-sdk/nested-clients 3.997.24 → 3.997.26

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.
Files changed (117) hide show
  1. package/dist-cjs/submodules/cognito-identity/index.js +13 -25
  2. package/dist-cjs/submodules/signin/index.js +13 -17
  3. package/dist-cjs/submodules/sso/index.js +12 -15
  4. package/dist-cjs/submodules/sso-oidc/index.js +12 -15
  5. package/dist-cjs/submodules/sts/index.js +13 -25
  6. package/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
  7. package/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
  8. package/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
  9. package/dist-es/submodules/cognito-identity/index.js +1 -0
  10. package/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +0 -2
  11. package/dist-es/submodules/cognito-identity/runtimeConfig.js +1 -2
  12. package/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
  13. package/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +2 -0
  14. package/dist-es/submodules/signin/commandBuilder.js +8 -0
  15. package/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
  16. package/dist-es/submodules/signin/index.js +1 -0
  17. package/dist-es/submodules/signin/runtimeConfig.browser.js +0 -2
  18. package/dist-es/submodules/signin/runtimeConfig.js +1 -2
  19. package/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
  20. package/dist-es/submodules/signin/runtimeConfig.shared.js +2 -0
  21. package/dist-es/submodules/sso/commandBuilder.js +6 -0
  22. package/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
  23. package/dist-es/submodules/sso/index.js +1 -0
  24. package/dist-es/submodules/sso/runtimeConfig.browser.js +0 -2
  25. package/dist-es/submodules/sso/runtimeConfig.js +1 -2
  26. package/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
  27. package/dist-es/submodules/sso/runtimeConfig.shared.js +2 -0
  28. package/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
  29. package/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
  30. package/dist-es/submodules/sso-oidc/index.js +1 -0
  31. package/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +0 -2
  32. package/dist-es/submodules/sso-oidc/runtimeConfig.js +1 -2
  33. package/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
  34. package/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
  35. package/dist-es/submodules/sts/commandBuilder.js +6 -0
  36. package/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
  37. package/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
  38. package/dist-es/submodules/sts/index.js +1 -0
  39. package/dist-es/submodules/sts/runtimeConfig.browser.js +0 -2
  40. package/dist-es/submodules/sts/runtimeConfig.js +1 -2
  41. package/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
  42. package/dist-es/submodules/sts/runtimeConfig.shared.js +2 -0
  43. package/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
  44. package/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
  45. package/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
  46. package/dist-types/submodules/cognito-identity/index.d.ts +1 -0
  47. package/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +1 -1
  48. package/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +1 -1
  49. package/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +1 -1
  50. package/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  51. package/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
  52. package/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  53. package/dist-types/submodules/signin/index.d.ts +1 -0
  54. package/dist-types/submodules/signin/runtimeConfig.browser.d.ts +1 -1
  55. package/dist-types/submodules/signin/runtimeConfig.d.ts +1 -1
  56. package/dist-types/submodules/signin/runtimeConfig.native.d.ts +1 -1
  57. package/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  58. package/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
  59. package/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
  60. package/dist-types/submodules/sso/index.d.ts +1 -0
  61. package/dist-types/submodules/sso/runtimeConfig.browser.d.ts +1 -1
  62. package/dist-types/submodules/sso/runtimeConfig.d.ts +1 -1
  63. package/dist-types/submodules/sso/runtimeConfig.native.d.ts +1 -1
  64. package/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  65. package/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
  66. package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
  67. package/dist-types/submodules/sso-oidc/index.d.ts +1 -0
  68. package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -1
  69. package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +1 -1
  70. package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -1
  71. package/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  72. package/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
  73. package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
  74. package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
  75. package/dist-types/submodules/sts/index.d.ts +1 -0
  76. package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +1 -1
  77. package/dist-types/submodules/sts/runtimeConfig.d.ts +1 -1
  78. package/dist-types/submodules/sts/runtimeConfig.native.d.ts +1 -1
  79. package/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -0
  80. package/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
  81. package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
  82. package/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
  83. package/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
  84. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +1 -1
  85. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +1 -1
  86. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +1 -1
  87. package/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
  88. package/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
  89. package/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
  90. package/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
  91. package/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +1 -1
  92. package/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +1 -1
  93. package/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +1 -1
  94. package/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
  95. package/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
  96. package/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
  97. package/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
  98. package/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +1 -1
  99. package/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +1 -1
  100. package/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +1 -1
  101. package/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
  102. package/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
  103. package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
  104. package/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
  105. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +1 -1
  106. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +1 -1
  107. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +1 -1
  108. package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
  109. package/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
  110. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
  111. package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
  112. package/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
  113. package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +1 -1
  114. package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +1 -1
  115. package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +1 -1
  116. package/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -0
  117. package/package.json +8 -10
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { GetRoleCredentialsRequest, GetRoleCredentialsResponse } from "../models/models_0";
4
- import type { SSOClientResolvedConfig } from "../SSOClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetRoleCredentialsCommandInput extends GetRoleCredentialsReques
22
19
  export interface GetRoleCredentialsCommandOutput extends GetRoleCredentialsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetRoleCredentialsCommand_base: {
25
- new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig, GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput>;
26
- new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, SSOClientResolvedConfig, GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, import("..").SSOClientResolvedConfig, GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput>;
23
+ new (input: GetRoleCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput, import("..").SSOClientResolvedConfig, GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns the STS short-term credentials for a given role name that is assigned to the
@@ -24,6 +24,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
24
24
  export type { RuntimeExtension } from "./runtimeExtensions";
25
25
  export type { SSOExtensionConfiguration } from "./extensionConfiguration";
26
26
  export * from "./commands";
27
+ export { Command as $Command } from "@smithy/core/client";
27
28
  export * from "./schemas/schemas_0";
28
29
  export * from "./models/errors";
29
30
  export * from "./models/models_0";
@@ -12,7 +12,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
12
12
  region: string | import("@smithy/types").Provider<any>;
13
13
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
14
14
  retryMode: string | import("@smithy/types").Provider<string>;
15
- sha256: import("@smithy/types").HashConstructor;
16
15
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
17
16
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
18
17
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -23,6 +22,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
23
22
  [setting: string]: unknown;
24
23
  };
25
24
  apiVersion: string;
25
+ sha256: import("@smithy/types").HashConstructor;
26
26
  urlParser: import("@smithy/types").UrlParser;
27
27
  base64Decoder: import("@smithy/types").Decoder;
28
28
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<string>;
14
14
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
18
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -25,6 +24,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
25
24
  [setting: string]: unknown;
26
25
  };
27
26
  apiVersion: string;
27
+ sha256: import("@smithy/types").HashConstructor;
28
28
  urlParser: import("@smithy/types").UrlParser;
29
29
  base64Decoder: import("@smithy/types").Decoder;
30
30
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { SSOClientConfig } from "./SSOClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: SSOClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -32,6 +32,7 @@ export declare const getRuntimeConfig: (config: SSOClientConfig) => {
32
32
  defaultNamespace?: string;
33
33
  };
34
34
  serviceId: string;
35
+ sha256: import("@smithy/types").HashConstructor;
35
36
  urlParser: import("@smithy/types").UrlParser;
36
37
  utf8Decoder: import("@smithy/types").Decoder;
37
38
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { SSOOIDCClientResolvedConfig } from "./SSOOIDCClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends import("./commands").CreateTokenCommandInput, O extends import("./commands").CreateTokenCommandOutput>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, SSOOIDCClientResolvedConfig, import("./commands").CreateTokenCommandInput, import("./commands").CreateTokenCommandOutput>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SSOOIDCClientResolvedConfig, import("./commands").CreateTokenCommandInput, import("./commands").CreateTokenCommandOutput>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
4
- import type { SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateTokenCommandInput extends CreateTokenRequest {
22
19
  export interface CreateTokenCommandOutput extends CreateTokenResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateTokenCommand_base: {
25
- new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
26
- new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, import("..").SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
23
+ new (input: CreateTokenCommandInput): import("@smithy/core/client").CommandImpl<CreateTokenCommandInput, CreateTokenCommandOutput, import("..").SSOOIDCClientResolvedConfig, CreateTokenCommandInput, CreateTokenCommandOutput>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates and returns access and refresh tokens for clients that are authenticated using
@@ -47,6 +47,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
47
47
  export type { RuntimeExtension } from "./runtimeExtensions";
48
48
  export type { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
49
49
  export * from "./commands";
50
+ export { Command as $Command } from "@smithy/core/client";
50
51
  export * from "./schemas/schemas_0";
51
52
  export * from "./models/enums";
52
53
  export * from "./models/errors";
@@ -12,7 +12,6 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
12
12
  region: string | import("@smithy/types").Provider<any>;
13
13
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
14
14
  retryMode: string | import("@smithy/types").Provider<string>;
15
- sha256: import("@smithy/types").HashConstructor;
16
15
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
17
16
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
18
17
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -23,6 +22,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
23
22
  [setting: string]: unknown;
24
23
  };
25
24
  apiVersion: string;
25
+ sha256: import("@smithy/types").HashConstructor;
26
26
  urlParser: import("@smithy/types").UrlParser;
27
27
  base64Decoder: import("@smithy/types").Decoder;
28
28
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<string>;
14
14
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
18
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -25,6 +24,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
25
24
  [setting: string]: unknown;
26
25
  };
27
26
  apiVersion: string;
27
+ sha256: import("@smithy/types").HashConstructor;
28
28
  urlParser: import("@smithy/types").UrlParser;
29
29
  base64Decoder: import("@smithy/types").Decoder;
30
30
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { SSOOIDCClientConfig } from "./SSOOIDCClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -32,6 +32,7 @@ export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
32
32
  defaultNamespace?: string;
33
33
  };
34
34
  serviceId: string;
35
+ sha256: import("@smithy/types").HashConstructor;
35
36
  urlParser: import("@smithy/types").UrlParser;
36
37
  utf8Decoder: import("@smithy/types").Decoder;
37
38
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "./STSClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface AssumeRoleCommandInput extends AssumeRoleRequest {
22
19
  export interface AssumeRoleCommandOutput extends AssumeRoleResponse, __MetadataBearer {
23
20
  }
24
21
  declare const AssumeRoleCommand_base: {
25
- new (input: AssumeRoleCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: AssumeRoleCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: AssumeRoleCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, import("..").STSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: AssumeRoleCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleCommandInput, AssumeRoleCommandOutput, import("..").STSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a set of temporary security credentials that you can use to access Amazon Web Services
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import type { AssumeRoleWithWebIdentityRequest, AssumeRoleWithWebIdentityResponse } from "../models/models_0";
4
- import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface AssumeRoleWithWebIdentityCommandInput extends AssumeRoleWithWeb
22
19
  export interface AssumeRoleWithWebIdentityCommandOutput extends AssumeRoleWithWebIdentityResponse, __MetadataBearer {
23
20
  }
24
21
  declare const AssumeRoleWithWebIdentityCommand_base: {
25
- new (input: AssumeRoleWithWebIdentityCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: AssumeRoleWithWebIdentityCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, STSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: AssumeRoleWithWebIdentityCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, import("..").STSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: AssumeRoleWithWebIdentityCommandInput): import("@smithy/core/client").CommandImpl<AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, import("..").STSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns a set of temporary security credentials for users who have been authenticated in
@@ -12,6 +12,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
12
12
  export type { RuntimeExtension } from "./runtimeExtensions";
13
13
  export type { STSExtensionConfiguration } from "./extensionConfiguration";
14
14
  export * from "./commands";
15
+ export { Command as $Command } from "@smithy/core/client";
15
16
  export * from "./schemas/schemas_0";
16
17
  export * from "./models/errors";
17
18
  export * from "./models/models_0";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -25,7 +25,6 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
25
25
  region: string | import("@smithy/types").Provider<string>;
26
26
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
- sha256: import("@smithy/types").HashConstructor;
29
28
  sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
30
29
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
31
30
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -38,6 +37,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
38
37
  [setting: string]: unknown;
39
38
  };
40
39
  apiVersion: string;
40
+ sha256: import("@smithy/types").HashConstructor;
41
41
  urlParser: import("@smithy/types").UrlParser;
42
42
  base64Decoder: import("@smithy/types").Decoder;
43
43
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { STSClientConfig } from "./STSClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: STSClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsQueryProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: STSClientConfig) => {
33
33
  defaultNamespace?: string;
34
34
  };
35
35
  serviceId: string;
36
+ sha256: import("@smithy/types").HashConstructor;
36
37
  signerConstructor: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | typeof SignatureV4MultiRegion;
37
38
  urlParser: import("@smithy/types").UrlParser;
38
39
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ CognitoIdentityClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./CognitoIdentityClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ CognitoIdentityClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ CognitoIdentityClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CognitoIdentityClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CognitoIdentityClient";
8
2
  import {
9
3
  GetCredentialsForIdentityInput,
10
4
  GetCredentialsForIdentityResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetCredentialsForIdentityCommandInput
15
8
  extends GetCredentialsForIdentityInput {}
16
9
  export interface GetCredentialsForIdentityCommandOutput
@@ -22,22 +15,20 @@ declare const GetCredentialsForIdentityCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  GetCredentialsForIdentityCommandInput,
24
17
  GetCredentialsForIdentityCommandOutput,
25
- CognitoIdentityClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").CognitoIdentityClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: GetCredentialsForIdentityCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  GetCredentialsForIdentityCommandInput,
33
26
  GetCredentialsForIdentityCommandOutput,
34
- CognitoIdentityClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").CognitoIdentityClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class GetCredentialsForIdentityCommand extends GetCredentialsForIdentityCommand_base {
43
34
  protected static __types: {
@@ -1,33 +1,24 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- CognitoIdentityClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../CognitoIdentityClient";
8
2
  import { GetIdInput, GetIdResponse } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface GetIdCommandInput extends GetIdInput {}
12
5
  export interface GetIdCommandOutput extends GetIdResponse, __MetadataBearer {}
13
6
  declare const GetIdCommand_base: {
14
7
  new (input: GetIdCommandInput): import("@smithy/core/client").CommandImpl<
15
8
  GetIdCommandInput,
16
9
  GetIdCommandOutput,
17
- CognitoIdentityClientResolvedConfig,
18
- ServiceInputTypes,
19
- ServiceOutputTypes
10
+ import("..").CognitoIdentityClientResolvedConfig,
11
+ import("..").ServiceInputTypes,
12
+ import("..").ServiceOutputTypes
20
13
  >;
21
14
  new (input: GetIdCommandInput): import("@smithy/core/client").CommandImpl<
22
15
  GetIdCommandInput,
23
16
  GetIdCommandOutput,
24
- CognitoIdentityClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").CognitoIdentityClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
21
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
22
  };
32
23
  export declare class GetIdCommand extends GetIdCommand_base {
33
24
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { CognitoIdentityExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
@@ -17,7 +17,6 @@ export declare const getRuntimeConfig: (
17
17
  | import("@smithy/core/protocols").HttpHandler<any>
18
18
  | RequestHandler;
19
19
  retryMode: string | import("@smithy/types").Provider<string>;
20
- sha256: import("@smithy/types").HashConstructor;
21
20
  streamCollector: (
22
21
  stream:
23
22
  | import("stream").Readable
@@ -39,6 +38,7 @@ export declare const getRuntimeConfig: (
39
38
  [setting: string]: unknown;
40
39
  };
41
40
  apiVersion: string;
41
+ sha256: import("@smithy/types").HashConstructor;
42
42
  urlParser: import("@smithy/types").UrlParser;
43
43
  base64Decoder: import("@smithy/types").Decoder;
44
44
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -18,7 +18,6 @@ export declare const getRuntimeConfig: (
18
18
  | RequestHandler
19
19
  | import("@smithy/core/protocols").HttpHandler<any>;
20
20
  retryMode: string | import("@smithy/types").Provider<string>;
21
- sha256: import("@smithy/types").HashConstructor;
22
21
  streamCollector: (
23
22
  stream:
24
23
  | import("stream").Readable
@@ -39,6 +38,7 @@ export declare const getRuntimeConfig: (
39
38
  [setting: string]: unknown;
40
39
  };
41
40
  apiVersion: string;
41
+ sha256: import("@smithy/types").HashConstructor;
42
42
  urlParser: import("@smithy/types").UrlParser;
43
43
  base64Decoder: import("@smithy/types").Decoder;
44
44
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -3,7 +3,6 @@ export declare const getRuntimeConfig: (
3
3
  config: CognitoIdentityClientConfig
4
4
  ) => {
5
5
  runtime: string;
6
- sha256: import("@smithy/types").HashConstructor;
7
6
  requestHandler:
8
7
  | import("@smithy/types").NodeHttpHandlerOptions
9
8
  | import("@smithy/types").FetchHttpHandlerOptions
@@ -20,6 +19,7 @@ export declare const getRuntimeConfig: (
20
19
  [setting: string]: unknown;
21
20
  };
22
21
  apiVersion: string;
22
+ sha256: import("@smithy/types").HashConstructor;
23
23
  urlParser: import("@smithy/types").UrlParser;
24
24
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
25
25
  streamCollector: (
@@ -54,6 +54,7 @@ export declare const getRuntimeConfig: (
54
54
  defaultNamespace?: string;
55
55
  };
56
56
  serviceId: string;
57
+ sha256: import("@smithy/types").HashConstructor;
57
58
  urlParser: import("@smithy/types").UrlParser;
58
59
  utf8Decoder: import("@smithy/types").Decoder;
59
60
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import { SigninClientResolvedConfig } from "./SigninClient";
3
+ export declare const command: <
4
+ I extends import("./commands").CreateOAuth2TokenCommandInput,
5
+ O extends import("./commands").CreateOAuth2TokenCommandOutput
6
+ >(
7
+ added: EndpointParameterInstructions,
8
+ plugins: (
9
+ CommandCtor: any,
10
+ clientStack: any,
11
+ config: any,
12
+ options: any
13
+ ) => import("@smithy/types").Pluggable<any, any>[],
14
+ op: string,
15
+ $: import("@smithy/types").StaticOperationSchema,
16
+ smithyContext?: Record<string, unknown>
17
+ ) => {
18
+ new (input: I): import("@smithy/core/client").CommandImpl<
19
+ I,
20
+ O,
21
+ SigninClientResolvedConfig,
22
+ import("./commands").CreateOAuth2TokenCommandInput,
23
+ import("./commands").CreateOAuth2TokenCommandOutput
24
+ >;
25
+ new (
26
+ ...[input]: import("@smithy/types").OptionalParameter<I>
27
+ ): import("@smithy/core/client").CommandImpl<
28
+ I,
29
+ O,
30
+ SigninClientResolvedConfig,
31
+ import("./commands").CreateOAuth2TokenCommandInput,
32
+ import("./commands").CreateOAuth2TokenCommandOutput
33
+ >;
34
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
35
+ };
36
+ export declare const _ep0: EndpointParameterInstructions;
37
+ export declare const _mw0: (
38
+ Command: any,
39
+ cs: any,
40
+ config: any,
41
+ o: any
42
+ ) => never[];