@aws-sdk/client-chime-sdk-identity 3.296.0 → 3.297.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/dist-types/ChimeSDKIdentity.d.ts +25 -0
- package/dist-types/ChimeSDKIdentityClient.d.ts +24 -4
- package/dist-types/commands/CreateAppInstanceAdminCommand.d.ts +16 -0
- package/dist-types/commands/CreateAppInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateAppInstanceUserCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppInstanceAdminCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAppInstanceUserCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAppInstanceAdminCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAppInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAppInstanceUserCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAppInstanceUserEndpointCommand.d.ts +16 -0
- package/dist-types/commands/GetAppInstanceRetentionSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListAppInstanceAdminsCommand.d.ts +16 -0
- package/dist-types/commands/ListAppInstanceUserEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/ListAppInstanceUsersCommand.d.ts +16 -0
- package/dist-types/commands/ListAppInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutAppInstanceRetentionSettingsCommand.d.ts +16 -0
- package/dist-types/commands/RegisterAppInstanceUserEndpointCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppInstanceUserCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppInstanceUserEndpointCommand.d.ts +16 -0
- package/dist-types/models/ChimeSDKIdentityServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +163 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAppInstanceAdminsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAppInstanceUserEndpointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAppInstanceUsersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAppInstancesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { DescribeAppInstanceAdminRequest, DescribeAppInstanceAdminResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAppInstanceAdminCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAppInstanceAdminCommandInput extends DescribeAppInstanceAdminRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAppInstanceAdminCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAppInstanceAdminCommandOutput extends DescribeAppInstanceAdminResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the full details of an <code>AppInstanceAdmin</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAppInstanceAdminCommandOutput extends DescribeAppInstan
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAppInstanceAdminCommandInput - {@link DescribeAppInstanceAdminCommandInput}
|
|
34
|
+
* @returns {@link DescribeAppInstanceAdminCommandOutput}
|
|
28
35
|
* @see {@link DescribeAppInstanceAdminCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAppInstanceAdminCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeAppInstanceAdminCommandOutput extends DescribeAppInstan
|
|
|
52
59
|
export declare class DescribeAppInstanceAdminCommand extends $Command<DescribeAppInstanceAdminCommandInput, DescribeAppInstanceAdminCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeAppInstanceAdminCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeAppInstanceAdminCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAppInstanceAdminCommandInput, DescribeAppInstanceAdminCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { DescribeAppInstanceRequest, DescribeAppInstanceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAppInstanceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAppInstanceCommandInput extends DescribeAppInstanceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAppInstanceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAppInstanceCommandOutput extends DescribeAppInstanceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the full details of an <code>AppInstance</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAppInstanceCommandOutput extends DescribeAppInstanceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAppInstanceCommandInput - {@link DescribeAppInstanceCommandInput}
|
|
34
|
+
* @returns {@link DescribeAppInstanceCommandOutput}
|
|
28
35
|
* @see {@link DescribeAppInstanceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAppInstanceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeAppInstanceCommandOutput extends DescribeAppInstanceRes
|
|
|
52
59
|
export declare class DescribeAppInstanceCommand extends $Command<DescribeAppInstanceCommandInput, DescribeAppInstanceCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeAppInstanceCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeAppInstanceCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAppInstanceCommandInput, DescribeAppInstanceCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { DescribeAppInstanceUserRequest, DescribeAppInstanceUserResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAppInstanceUserCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAppInstanceUserCommandInput extends DescribeAppInstanceUserRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAppInstanceUserCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAppInstanceUserCommandOutput extends DescribeAppInstanceUserResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the full details of an <code>AppInstanceUser</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAppInstanceUserCommandOutput extends DescribeAppInstanc
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAppInstanceUserCommandInput - {@link DescribeAppInstanceUserCommandInput}
|
|
34
|
+
* @returns {@link DescribeAppInstanceUserCommandOutput}
|
|
28
35
|
* @see {@link DescribeAppInstanceUserCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAppInstanceUserCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeAppInstanceUserCommandOutput extends DescribeAppInstanc
|
|
|
52
59
|
export declare class DescribeAppInstanceUserCommand extends $Command<DescribeAppInstanceUserCommandInput, DescribeAppInstanceUserCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeAppInstanceUserCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeAppInstanceUserCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAppInstanceUserCommandInput, DescribeAppInstanceUserCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { DescribeAppInstanceUserEndpointRequest, DescribeAppInstanceUserEndpointResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeAppInstanceUserEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeAppInstanceUserEndpointCommandInput extends DescribeAppInstanceUserEndpointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeAppInstanceUserEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeAppInstanceUserEndpointCommandOutput extends DescribeAppInstanceUserEndpointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the full details of an <code>AppInstanceUserEndpoint</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeAppInstanceUserEndpointCommandOutput extends DescribeAp
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeAppInstanceUserEndpointCommandInput - {@link DescribeAppInstanceUserEndpointCommandInput}
|
|
34
|
+
* @returns {@link DescribeAppInstanceUserEndpointCommandOutput}
|
|
28
35
|
* @see {@link DescribeAppInstanceUserEndpointCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeAppInstanceUserEndpointCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeAppInstanceUserEndpointCommandOutput extends DescribeAp
|
|
|
52
59
|
export declare class DescribeAppInstanceUserEndpointCommand extends $Command<DescribeAppInstanceUserEndpointCommandInput, DescribeAppInstanceUserEndpointCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeAppInstanceUserEndpointCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeAppInstanceUserEndpointCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAppInstanceUserEndpointCommandInput, DescribeAppInstanceUserEndpointCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { GetAppInstanceRetentionSettingsRequest, GetAppInstanceRetentionSettingsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAppInstanceRetentionSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAppInstanceRetentionSettingsCommandInput extends GetAppInstanceRetentionSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAppInstanceRetentionSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAppInstanceRetentionSettingsCommandOutput extends GetAppInstanceRetentionSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the retention settings for an <code>AppInstance</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAppInstanceRetentionSettingsCommandOutput extends GetAppInst
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAppInstanceRetentionSettingsCommandInput - {@link GetAppInstanceRetentionSettingsCommandInput}
|
|
34
|
+
* @returns {@link GetAppInstanceRetentionSettingsCommandOutput}
|
|
28
35
|
* @see {@link GetAppInstanceRetentionSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAppInstanceRetentionSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetAppInstanceRetentionSettingsCommandOutput extends GetAppInst
|
|
|
52
59
|
export declare class GetAppInstanceRetentionSettingsCommand extends $Command<GetAppInstanceRetentionSettingsCommandInput, GetAppInstanceRetentionSettingsCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: GetAppInstanceRetentionSettingsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetAppInstanceRetentionSettingsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAppInstanceRetentionSettingsCommandInput, GetAppInstanceRetentionSettingsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { ListAppInstanceAdminsRequest, ListAppInstanceAdminsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAppInstanceAdminsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAppInstanceAdminsCommandInput extends ListAppInstanceAdminsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAppInstanceAdminsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAppInstanceAdminsCommandOutput extends ListAppInstanceAdminsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of the administrators in the <code>AppInstance</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAppInstanceAdminsCommandOutput extends ListAppInstanceAdmin
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAppInstanceAdminsCommandInput - {@link ListAppInstanceAdminsCommandInput}
|
|
34
|
+
* @returns {@link ListAppInstanceAdminsCommandOutput}
|
|
28
35
|
* @see {@link ListAppInstanceAdminsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAppInstanceAdminsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListAppInstanceAdminsCommandOutput extends ListAppInstanceAdmin
|
|
|
55
62
|
export declare class ListAppInstanceAdminsCommand extends $Command<ListAppInstanceAdminsCommandInput, ListAppInstanceAdminsCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
56
63
|
readonly input: ListAppInstanceAdminsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListAppInstanceAdminsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppInstanceAdminsCommandInput, ListAppInstanceAdminsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { ListAppInstanceUserEndpointsRequest, ListAppInstanceUserEndpointsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAppInstanceUserEndpointsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAppInstanceUserEndpointsCommandInput extends ListAppInstanceUserEndpointsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAppInstanceUserEndpointsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAppInstanceUserEndpointsCommandOutput extends ListAppInstanceUserEndpointsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the <code>AppInstanceUserEndpoints</code> created under a single <code>AppInstanceUser</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListAppInstanceUserEndpointsCommandOutput extends ListAppInstan
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListAppInstanceUserEndpointsCommandInput - {@link ListAppInstanceUserEndpointsCommandInput}
|
|
34
|
+
* @returns {@link ListAppInstanceUserEndpointsCommandOutput}
|
|
28
35
|
* @see {@link ListAppInstanceUserEndpointsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListAppInstanceUserEndpointsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListAppInstanceUserEndpointsCommandOutput extends ListAppInstan
|
|
|
52
59
|
export declare class ListAppInstanceUserEndpointsCommand extends $Command<ListAppInstanceUserEndpointsCommandInput, ListAppInstanceUserEndpointsCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: ListAppInstanceUserEndpointsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListAppInstanceUserEndpointsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppInstanceUserEndpointsCommandInput, ListAppInstanceUserEndpointsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { ListAppInstanceUsersRequest, ListAppInstanceUsersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAppInstanceUsersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAppInstanceUsersCommandInput extends ListAppInstanceUsersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAppInstanceUsersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAppInstanceUsersCommandOutput extends ListAppInstanceUsersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List all <code>AppInstanceUsers</code> created under a single
|
|
18
23
|
* <code>AppInstance</code>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListAppInstanceUsersCommandOutput extends ListAppInstanceUsersR
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListAppInstanceUsersCommandInput - {@link ListAppInstanceUsersCommandInput}
|
|
35
|
+
* @returns {@link ListAppInstanceUsersCommandOutput}
|
|
29
36
|
* @see {@link ListAppInstanceUsersCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListAppInstanceUsersCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListAppInstanceUsersCommandOutput extends ListAppInstanceUsersR
|
|
|
53
60
|
export declare class ListAppInstanceUsersCommand extends $Command<ListAppInstanceUsersCommandInput, ListAppInstanceUsersCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
54
61
|
readonly input: ListAppInstanceUsersCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListAppInstanceUsersCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppInstanceUsersCommandInput, ListAppInstanceUsersCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { ListAppInstancesRequest, ListAppInstancesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAppInstancesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAppInstancesCommandInput extends ListAppInstancesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAppInstancesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAppInstancesCommandOutput extends ListAppInstancesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all Amazon Chime <code>AppInstance</code>s created under a single AWS
|
|
18
23
|
* account.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListAppInstancesCommandOutput extends ListAppInstancesResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListAppInstancesCommandInput - {@link ListAppInstancesCommandInput}
|
|
35
|
+
* @returns {@link ListAppInstancesCommandOutput}
|
|
29
36
|
* @see {@link ListAppInstancesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListAppInstancesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListAppInstancesCommandOutput extends ListAppInstancesResponse,
|
|
|
53
60
|
export declare class ListAppInstancesCommand extends $Command<ListAppInstancesCommandInput, ListAppInstancesCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
54
61
|
readonly input: ListAppInstancesCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListAppInstancesCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppInstancesCommandInput, ListAppInstancesCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the tags applied to an Amazon Chime SDK identity resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
52
59
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
53
60
|
readonly input: ListTagsForResourceCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListTagsForResourceCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { PutAppInstanceRetentionSettingsRequest, PutAppInstanceRetentionSettingsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutAppInstanceRetentionSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutAppInstanceRetentionSettingsCommandInput extends PutAppInstanceRetentionSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutAppInstanceRetentionSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutAppInstanceRetentionSettingsCommandOutput extends PutAppInstanceRetentionSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sets the amount of time in days that a given <code>AppInstance</code> retains
|
|
18
23
|
* data.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface PutAppInstanceRetentionSettingsCommandOutput extends PutAppInst
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param PutAppInstanceRetentionSettingsCommandInput - {@link PutAppInstanceRetentionSettingsCommandInput}
|
|
35
|
+
* @returns {@link PutAppInstanceRetentionSettingsCommandOutput}
|
|
29
36
|
* @see {@link PutAppInstanceRetentionSettingsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link PutAppInstanceRetentionSettingsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface PutAppInstanceRetentionSettingsCommandOutput extends PutAppInst
|
|
|
53
60
|
export declare class PutAppInstanceRetentionSettingsCommand extends $Command<PutAppInstanceRetentionSettingsCommandInput, PutAppInstanceRetentionSettingsCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
54
61
|
readonly input: PutAppInstanceRetentionSettingsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: PutAppInstanceRetentionSettingsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAppInstanceRetentionSettingsCommandInput, PutAppInstanceRetentionSettingsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient";
|
|
5
5
|
import { RegisterAppInstanceUserEndpointRequest, RegisterAppInstanceUserEndpointResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterAppInstanceUserEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterAppInstanceUserEndpointCommandInput extends RegisterAppInstanceUserEndpointRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterAppInstanceUserEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterAppInstanceUserEndpointCommandOutput extends RegisterAppInstanceUserEndpointResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Registers an endpoint under an Amazon Chime <code>AppInstanceUser</code>. The endpoint receives messages for a user. For push notifications, the endpoint is a mobile device used to receive mobile push notifications for a user.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RegisterAppInstanceUserEndpointCommandOutput extends RegisterAp
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RegisterAppInstanceUserEndpointCommandInput - {@link RegisterAppInstanceUserEndpointCommandInput}
|
|
34
|
+
* @returns {@link RegisterAppInstanceUserEndpointCommandOutput}
|
|
28
35
|
* @see {@link RegisterAppInstanceUserEndpointCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RegisterAppInstanceUserEndpointCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ChimeSDKIdentityClientResolvedConfig | config} for ChimeSDKIdentityClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface RegisterAppInstanceUserEndpointCommandOutput extends RegisterAp
|
|
|
59
66
|
export declare class RegisterAppInstanceUserEndpointCommand extends $Command<RegisterAppInstanceUserEndpointCommandInput, RegisterAppInstanceUserEndpointCommandOutput, ChimeSDKIdentityClientResolvedConfig> {
|
|
60
67
|
readonly input: RegisterAppInstanceUserEndpointCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: RegisterAppInstanceUserEndpointCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKIdentityClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterAppInstanceUserEndpointCommandInput, RegisterAppInstanceUserEndpointCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|