@aws-sdk/client-chime-sdk-identity 3.169.0 → 3.170.0
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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ChimeSDKIdentity.d.ts +442 -125
- package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +274 -97
- package/dist-types/ts3.4/commands/CreateAppInstanceAdminCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAppInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateAppInstanceUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteAppInstanceAdminCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteAppInstanceCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteAppInstanceUserCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceAdminCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAppInstanceRetentionSettingsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstanceAdminsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstanceUserEndpointsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstanceUsersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstancesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutAppInstanceRetentionSettingsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RegisterAppInstanceUserEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateAppInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +24 -24
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ChimeSDKIdentityServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +678 -616
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAppInstanceAdminsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAppInstanceUserEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAppInstanceUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAppInstancesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,33 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import { DeleteAppInstanceRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteAppInstanceCommandInput
|
|
15
|
+
extends DeleteAppInstanceRequest {}
|
|
16
|
+
export interface DeleteAppInstanceCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteAppInstanceCommand extends $Command<
|
|
19
|
+
DeleteAppInstanceCommandInput,
|
|
20
|
+
DeleteAppInstanceCommandOutput,
|
|
21
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteAppInstanceCommandInput;
|
|
24
|
+
constructor(input: DeleteAppInstanceCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteAppInstanceCommandInput, DeleteAppInstanceCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import { DeleteAppInstanceUserRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteAppInstanceUserCommandInput
|
|
15
|
+
extends DeleteAppInstanceUserRequest {}
|
|
16
|
+
export interface DeleteAppInstanceUserCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class DeleteAppInstanceUserCommand extends $Command<
|
|
19
|
+
DeleteAppInstanceUserCommandInput,
|
|
20
|
+
DeleteAppInstanceUserCommandOutput,
|
|
21
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteAppInstanceUserCommandInput;
|
|
24
|
+
constructor(input: DeleteAppInstanceUserCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
DeleteAppInstanceUserCommandInput,
|
|
32
|
+
DeleteAppInstanceUserCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import { DeregisterAppInstanceUserEndpointRequest } from "../models/models_0";
|
|
14
|
+
export interface DeregisterAppInstanceUserEndpointCommandInput
|
|
15
|
+
extends DeregisterAppInstanceUserEndpointRequest {}
|
|
16
|
+
export interface DeregisterAppInstanceUserEndpointCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeregisterAppInstanceUserEndpointCommand extends $Command<
|
|
20
|
+
DeregisterAppInstanceUserEndpointCommandInput,
|
|
21
|
+
DeregisterAppInstanceUserEndpointCommandOutput,
|
|
22
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeregisterAppInstanceUserEndpointCommandInput;
|
|
25
|
+
constructor(input: DeregisterAppInstanceUserEndpointCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeregisterAppInstanceUserEndpointCommandInput,
|
|
33
|
+
DeregisterAppInstanceUserEndpointCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAppInstanceAdminRequest,
|
|
15
|
+
DescribeAppInstanceAdminResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAppInstanceAdminCommandInput
|
|
18
|
+
extends DescribeAppInstanceAdminRequest {}
|
|
19
|
+
export interface DescribeAppInstanceAdminCommandOutput
|
|
20
|
+
extends DescribeAppInstanceAdminResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAppInstanceAdminCommand extends $Command<
|
|
24
|
+
DescribeAppInstanceAdminCommandInput,
|
|
25
|
+
DescribeAppInstanceAdminCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAppInstanceAdminCommandInput;
|
|
29
|
+
constructor(input: DescribeAppInstanceAdminCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeAppInstanceAdminCommandInput,
|
|
37
|
+
DescribeAppInstanceAdminCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAppInstanceRequest,
|
|
15
|
+
DescribeAppInstanceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAppInstanceCommandInput
|
|
18
|
+
extends DescribeAppInstanceRequest {}
|
|
19
|
+
export interface DescribeAppInstanceCommandOutput
|
|
20
|
+
extends DescribeAppInstanceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAppInstanceCommand extends $Command<
|
|
24
|
+
DescribeAppInstanceCommandInput,
|
|
25
|
+
DescribeAppInstanceCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAppInstanceCommandInput;
|
|
29
|
+
constructor(input: DescribeAppInstanceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeAppInstanceCommandInput, DescribeAppInstanceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAppInstanceUserRequest,
|
|
15
|
+
DescribeAppInstanceUserResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAppInstanceUserCommandInput
|
|
18
|
+
extends DescribeAppInstanceUserRequest {}
|
|
19
|
+
export interface DescribeAppInstanceUserCommandOutput
|
|
20
|
+
extends DescribeAppInstanceUserResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAppInstanceUserCommand extends $Command<
|
|
24
|
+
DescribeAppInstanceUserCommandInput,
|
|
25
|
+
DescribeAppInstanceUserCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAppInstanceUserCommandInput;
|
|
29
|
+
constructor(input: DescribeAppInstanceUserCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeAppInstanceUserCommandInput,
|
|
37
|
+
DescribeAppInstanceUserCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAppInstanceUserEndpointRequest,
|
|
15
|
+
DescribeAppInstanceUserEndpointResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAppInstanceUserEndpointCommandInput
|
|
18
|
+
extends DescribeAppInstanceUserEndpointRequest {}
|
|
19
|
+
export interface DescribeAppInstanceUserEndpointCommandOutput
|
|
20
|
+
extends DescribeAppInstanceUserEndpointResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAppInstanceUserEndpointCommand extends $Command<
|
|
24
|
+
DescribeAppInstanceUserEndpointCommandInput,
|
|
25
|
+
DescribeAppInstanceUserEndpointCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAppInstanceUserEndpointCommandInput;
|
|
29
|
+
constructor(input: DescribeAppInstanceUserEndpointCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeAppInstanceUserEndpointCommandInput,
|
|
37
|
+
DescribeAppInstanceUserEndpointCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
GetAppInstanceRetentionSettingsRequest,
|
|
15
|
+
GetAppInstanceRetentionSettingsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetAppInstanceRetentionSettingsCommandInput
|
|
18
|
+
extends GetAppInstanceRetentionSettingsRequest {}
|
|
19
|
+
export interface GetAppInstanceRetentionSettingsCommandOutput
|
|
20
|
+
extends GetAppInstanceRetentionSettingsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetAppInstanceRetentionSettingsCommand extends $Command<
|
|
24
|
+
GetAppInstanceRetentionSettingsCommandInput,
|
|
25
|
+
GetAppInstanceRetentionSettingsCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetAppInstanceRetentionSettingsCommandInput;
|
|
29
|
+
constructor(input: GetAppInstanceRetentionSettingsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetAppInstanceRetentionSettingsCommandInput,
|
|
37
|
+
GetAppInstanceRetentionSettingsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAppInstanceAdminsRequest,
|
|
15
|
+
ListAppInstanceAdminsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAppInstanceAdminsCommandInput
|
|
18
|
+
extends ListAppInstanceAdminsRequest {}
|
|
19
|
+
export interface ListAppInstanceAdminsCommandOutput
|
|
20
|
+
extends ListAppInstanceAdminsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListAppInstanceAdminsCommand extends $Command<
|
|
24
|
+
ListAppInstanceAdminsCommandInput,
|
|
25
|
+
ListAppInstanceAdminsCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAppInstanceAdminsCommandInput;
|
|
29
|
+
constructor(input: ListAppInstanceAdminsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAppInstanceAdminsCommandInput,
|
|
37
|
+
ListAppInstanceAdminsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAppInstanceUserEndpointsRequest,
|
|
15
|
+
ListAppInstanceUserEndpointsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAppInstanceUserEndpointsCommandInput
|
|
18
|
+
extends ListAppInstanceUserEndpointsRequest {}
|
|
19
|
+
export interface ListAppInstanceUserEndpointsCommandOutput
|
|
20
|
+
extends ListAppInstanceUserEndpointsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListAppInstanceUserEndpointsCommand extends $Command<
|
|
24
|
+
ListAppInstanceUserEndpointsCommandInput,
|
|
25
|
+
ListAppInstanceUserEndpointsCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAppInstanceUserEndpointsCommandInput;
|
|
29
|
+
constructor(input: ListAppInstanceUserEndpointsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAppInstanceUserEndpointsCommandInput,
|
|
37
|
+
ListAppInstanceUserEndpointsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ChimeSDKIdentityClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../ChimeSDKIdentityClient";
|
|
13
|
+
import {
|
|
14
|
+
ListAppInstanceUsersRequest,
|
|
15
|
+
ListAppInstanceUsersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListAppInstanceUsersCommandInput
|
|
18
|
+
extends ListAppInstanceUsersRequest {}
|
|
19
|
+
export interface ListAppInstanceUsersCommandOutput
|
|
20
|
+
extends ListAppInstanceUsersResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListAppInstanceUsersCommand extends $Command<
|
|
24
|
+
ListAppInstanceUsersCommandInput,
|
|
25
|
+
ListAppInstanceUsersCommandOutput,
|
|
26
|
+
ChimeSDKIdentityClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListAppInstanceUsersCommandInput;
|
|
29
|
+
constructor(input: ListAppInstanceUsersCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ChimeSDKIdentityClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListAppInstanceUsersCommandInput,
|
|
37
|
+
ListAppInstanceUsersCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|