@aws-sdk/nested-clients 3.997.25 → 3.997.27
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/dist-cjs/submodules/cognito-identity/index.js +10 -23
- package/dist-cjs/submodules/signin/index.js +10 -15
- package/dist-cjs/submodules/sso/index.js +9 -13
- package/dist-cjs/submodules/sso-oidc/index.js +9 -13
- package/dist-cjs/submodules/sts/index.js +10 -23
- package/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
- package/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
- package/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
- package/dist-es/submodules/cognito-identity/index.js +1 -0
- package/dist-es/submodules/signin/commandBuilder.js +8 -0
- package/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
- package/dist-es/submodules/signin/index.js +1 -0
- package/dist-es/submodules/sso/commandBuilder.js +6 -0
- package/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
- package/dist-es/submodules/sso/index.js +1 -0
- package/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
- package/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
- package/dist-es/submodules/sso-oidc/index.js +1 -0
- package/dist-es/submodules/sts/commandBuilder.js +6 -0
- package/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
- package/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
- package/dist-es/submodules/sts/index.js +1 -0
- package/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
- package/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
- package/dist-types/submodules/cognito-identity/index.d.ts +1 -0
- package/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/dist-types/submodules/signin/index.d.ts +1 -0
- package/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/dist-types/submodules/sso/index.d.ts +1 -0
- package/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/dist-types/submodules/sso-oidc/index.d.ts +1 -0
- package/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
- package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
- package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
- package/dist-types/submodules/sts/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
- package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
- package/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { SSOClientResolvedConfig } from "./SSOClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends import("./commands").GetRoleCredentialsCommandInput, O extends import("./commands").GetRoleCredentialsCommandOutput>(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, SSOClientResolvedConfig, import("./commands").GetRoleCredentialsCommandInput, import("./commands").GetRoleCredentialsCommandOutput>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, SSOClientResolvedConfig, import("./commands").GetRoleCredentialsCommandInput, import("./commands").GetRoleCredentialsCommandOutput>;
|
|
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 { 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";
|
|
@@ -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";
|
|
@@ -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";
|
|
@@ -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[];
|
package/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts
CHANGED
|
@@ -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";
|
|
@@ -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[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
CreateOAuth2TokenRequest,
|
|
5
4
|
CreateOAuth2TokenResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import { SigninClientResolvedConfig } from "../SigninClient";
|
|
8
6
|
export { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
export interface CreateOAuth2TokenCommandInput
|
|
11
8
|
extends CreateOAuth2TokenRequest {}
|
|
12
9
|
export interface CreateOAuth2TokenCommandOutput
|
|
@@ -18,7 +15,7 @@ declare const CreateOAuth2TokenCommand_base: {
|
|
|
18
15
|
): import("@smithy/core/client").CommandImpl<
|
|
19
16
|
CreateOAuth2TokenCommandInput,
|
|
20
17
|
CreateOAuth2TokenCommandOutput,
|
|
21
|
-
SigninClientResolvedConfig,
|
|
18
|
+
import("..").SigninClientResolvedConfig,
|
|
22
19
|
CreateOAuth2TokenCommandInput,
|
|
23
20
|
CreateOAuth2TokenCommandOutput
|
|
24
21
|
>;
|
|
@@ -27,13 +24,11 @@ declare const CreateOAuth2TokenCommand_base: {
|
|
|
27
24
|
): import("@smithy/core/client").CommandImpl<
|
|
28
25
|
CreateOAuth2TokenCommandInput,
|
|
29
26
|
CreateOAuth2TokenCommandOutput,
|
|
30
|
-
SigninClientResolvedConfig,
|
|
27
|
+
import("..").SigninClientResolvedConfig,
|
|
31
28
|
CreateOAuth2TokenCommandInput,
|
|
32
29
|
CreateOAuth2TokenCommandOutput
|
|
33
30
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
32
|
};
|
|
38
33
|
export declare class CreateOAuth2TokenCommand extends CreateOAuth2TokenCommand_base {
|
|
39
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SigninExtensionConfiguration } 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/enums";
|
|
9
10
|
export * from "./models/errors";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import { SSOClientResolvedConfig } from "./SSOClient";
|
|
3
|
+
export declare const command: <
|
|
4
|
+
I extends import("./commands").GetRoleCredentialsCommandInput,
|
|
5
|
+
O extends import("./commands").GetRoleCredentialsCommandOutput
|
|
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
|
+
SSOClientResolvedConfig,
|
|
22
|
+
import("./commands").GetRoleCredentialsCommandInput,
|
|
23
|
+
import("./commands").GetRoleCredentialsCommandOutput
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
I,
|
|
29
|
+
O,
|
|
30
|
+
SSOClientResolvedConfig,
|
|
31
|
+
import("./commands").GetRoleCredentialsCommandInput,
|
|
32
|
+
import("./commands").GetRoleCredentialsCommandOutput
|
|
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[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
GetRoleCredentialsRequest,
|
|
5
4
|
GetRoleCredentialsResponse,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import { SSOClientResolvedConfig } from "../SSOClient";
|
|
8
6
|
export { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
export interface GetRoleCredentialsCommandInput
|
|
11
8
|
extends GetRoleCredentialsRequest {}
|
|
12
9
|
export interface GetRoleCredentialsCommandOutput
|
|
@@ -18,7 +15,7 @@ declare const GetRoleCredentialsCommand_base: {
|
|
|
18
15
|
): import("@smithy/core/client").CommandImpl<
|
|
19
16
|
GetRoleCredentialsCommandInput,
|
|
20
17
|
GetRoleCredentialsCommandOutput,
|
|
21
|
-
SSOClientResolvedConfig,
|
|
18
|
+
import("..").SSOClientResolvedConfig,
|
|
22
19
|
GetRoleCredentialsCommandInput,
|
|
23
20
|
GetRoleCredentialsCommandOutput
|
|
24
21
|
>;
|
|
@@ -27,13 +24,11 @@ declare const GetRoleCredentialsCommand_base: {
|
|
|
27
24
|
): import("@smithy/core/client").CommandImpl<
|
|
28
25
|
GetRoleCredentialsCommandInput,
|
|
29
26
|
GetRoleCredentialsCommandOutput,
|
|
30
|
-
SSOClientResolvedConfig,
|
|
27
|
+
import("..").SSOClientResolvedConfig,
|
|
31
28
|
GetRoleCredentialsCommandInput,
|
|
32
29
|
GetRoleCredentialsCommandOutput
|
|
33
30
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
32
|
};
|
|
38
33
|
export declare class GetRoleCredentialsCommand extends GetRoleCredentialsCommand_base {
|
|
39
34
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SSOExtensionConfiguration } 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";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import { SSOOIDCClientResolvedConfig } from "./SSOOIDCClient";
|
|
3
|
+
export declare const command: <
|
|
4
|
+
I extends import("./commands").CreateTokenCommandInput,
|
|
5
|
+
O extends import("./commands").CreateTokenCommandOutput
|
|
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
|
+
SSOOIDCClientResolvedConfig,
|
|
22
|
+
import("./commands").CreateTokenCommandInput,
|
|
23
|
+
import("./commands").CreateTokenCommandOutput
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: import("@smithy/types").OptionalParameter<I>
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
I,
|
|
29
|
+
O,
|
|
30
|
+
SSOOIDCClientResolvedConfig,
|
|
31
|
+
import("./commands").CreateTokenCommandInput,
|
|
32
|
+
import("./commands").CreateTokenCommandOutput
|
|
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[];
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
|
|
4
|
-
import { SSOOIDCClientResolvedConfig } from "../SSOOIDCClient";
|
|
5
3
|
export { __MetadataBearer };
|
|
6
|
-
export { $Command };
|
|
7
4
|
export interface CreateTokenCommandInput extends CreateTokenRequest {}
|
|
8
5
|
export interface CreateTokenCommandOutput
|
|
9
6
|
extends CreateTokenResponse,
|
|
@@ -14,7 +11,7 @@ declare const CreateTokenCommand_base: {
|
|
|
14
11
|
): import("@smithy/core/client").CommandImpl<
|
|
15
12
|
CreateTokenCommandInput,
|
|
16
13
|
CreateTokenCommandOutput,
|
|
17
|
-
SSOOIDCClientResolvedConfig,
|
|
14
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
18
15
|
CreateTokenCommandInput,
|
|
19
16
|
CreateTokenCommandOutput
|
|
20
17
|
>;
|
|
@@ -23,13 +20,11 @@ declare const CreateTokenCommand_base: {
|
|
|
23
20
|
): import("@smithy/core/client").CommandImpl<
|
|
24
21
|
CreateTokenCommandInput,
|
|
25
22
|
CreateTokenCommandOutput,
|
|
26
|
-
SSOOIDCClientResolvedConfig,
|
|
23
|
+
import("..").SSOOIDCClientResolvedConfig,
|
|
27
24
|
CreateTokenCommandInput,
|
|
28
25
|
CreateTokenCommandOutput
|
|
29
26
|
>;
|
|
30
|
-
getEndpointParameterInstructions():
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
33
28
|
};
|
|
34
29
|
export declare class CreateTokenCommand extends CreateTokenCommand_base {
|
|
35
30
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SSOOIDCExtensionConfiguration } 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/enums";
|
|
9
10
|
export * from "./models/errors";
|