@aws-sdk/client-ivschat 3.325.0 → 3.326.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/commands/CreateChatTokenCommand.d.ts +8 -0
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +25 -0
- package/dist-types/commands/CreateRoomCommand.d.ts +22 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteMessageCommand.d.ts +6 -0
- package/dist-types/commands/DeleteRoomCommand.d.ts +4 -0
- package/dist-types/commands/DisconnectUserCommand.d.ts +4 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +25 -0
- package/dist-types/commands/GetRoomCommand.d.ts +22 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +30 -0
- package/dist-types/commands/ListRoomsCommand.d.ts +25 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/SendEventCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +25 -0
- package/dist-types/commands/UpdateRoomCommand.d.ts +22 -0
- package/package.json +3 -3
|
@@ -50,6 +50,12 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new CreateChatTokenCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // CreateChatTokenResponse
|
|
54
|
+
* // token: "STRING_VALUE",
|
|
55
|
+
* // tokenExpirationTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // sessionExpirationTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
53
59
|
* ```
|
|
54
60
|
*
|
|
55
61
|
* @param CreateChatTokenCommandInput - {@link CreateChatTokenCommandInput}
|
|
@@ -70,6 +76,8 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _
|
|
|
70
76
|
* @throws {@link ValidationException} (client fault)
|
|
71
77
|
* <p/>
|
|
72
78
|
*
|
|
79
|
+
* @throws {@link IvschatServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
73
81
|
*
|
|
74
82
|
*/
|
|
75
83
|
export declare class CreateChatTokenCommand extends $Command<CreateChatTokenCommandInput, CreateChatTokenCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -46,6 +46,29 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new CreateLoggingConfigurationCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // CreateLoggingConfigurationResponse
|
|
50
|
+
* // arn: "STRING_VALUE",
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // name: "STRING_VALUE",
|
|
55
|
+
* // destinationConfiguration: { // DestinationConfiguration Union: only one key present
|
|
56
|
+
* // s3: { // S3DestinationConfiguration
|
|
57
|
+
* // bucketName: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // cloudWatchLogs: { // CloudWatchLogsDestinationConfiguration
|
|
60
|
+
* // logGroupName: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // firehose: { // FirehoseDestinationConfiguration
|
|
63
|
+
* // deliveryStreamName: "STRING_VALUE", // required
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // state: "STRING_VALUE",
|
|
67
|
+
* // tags: { // Tags
|
|
68
|
+
* // "<keys>": "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
49
72
|
* ```
|
|
50
73
|
*
|
|
51
74
|
* @param CreateLoggingConfigurationCommandInput - {@link CreateLoggingConfigurationCommandInput}
|
|
@@ -72,6 +95,8 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
72
95
|
* @throws {@link ValidationException} (client fault)
|
|
73
96
|
* <p/>
|
|
74
97
|
*
|
|
98
|
+
* @throws {@link IvschatServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
75
100
|
*
|
|
76
101
|
*/
|
|
77
102
|
export declare class CreateLoggingConfigurationCommand extends $Command<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -43,6 +43,26 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new CreateRoomCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // CreateRoomResponse
|
|
47
|
+
* // arn: "STRING_VALUE",
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // name: "STRING_VALUE",
|
|
50
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // maximumMessageRatePerSecond: Number("int"),
|
|
53
|
+
* // maximumMessageLength: Number("int"),
|
|
54
|
+
* // messageReviewHandler: { // MessageReviewHandler
|
|
55
|
+
* // uri: "STRING_VALUE",
|
|
56
|
+
* // fallbackResult: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // tags: { // Tags
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
46
66
|
* ```
|
|
47
67
|
*
|
|
48
68
|
* @param CreateRoomCommandInput - {@link CreateRoomCommandInput}
|
|
@@ -69,6 +89,8 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB
|
|
|
69
89
|
* @throws {@link ValidationException} (client fault)
|
|
70
90
|
* <p/>
|
|
71
91
|
*
|
|
92
|
+
* @throws {@link IvschatServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
72
94
|
*
|
|
73
95
|
*/
|
|
74
96
|
export declare class CreateRoomCommand extends $Command<CreateRoomCommandInput, CreateRoomCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteLoggingConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteLoggingConfigurationCommandInput - {@link DeleteLoggingConfigurationCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
54
56
|
* @throws {@link ValidationException} (client fault)
|
|
55
57
|
* <p/>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link IvschatServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteLoggingConfigurationCommand extends $Command<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -36,6 +36,10 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteMessageCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DeleteMessageResponse
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
39
43
|
* ```
|
|
40
44
|
*
|
|
41
45
|
* @param DeleteMessageCommandInput - {@link DeleteMessageCommandInput}
|
|
@@ -59,6 +63,8 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met
|
|
|
59
63
|
* @throws {@link ValidationException} (client fault)
|
|
60
64
|
* <p/>
|
|
61
65
|
*
|
|
66
|
+
* @throws {@link IvschatServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
62
68
|
*
|
|
63
69
|
*/
|
|
64
70
|
export declare class DeleteMessageCommand extends $Command<DeleteMessageCommandInput, DeleteMessageCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteRoomCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteRoomCommandInput - {@link DeleteRoomCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p/>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link IvschatServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class DeleteRoomCommand extends $Command<DeleteRoomCommandInput, DeleteRoomCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DisconnectUserCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DisconnectUserCommandInput - {@link DisconnectUserCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* <p/>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link IvschatServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DisconnectUserCommand extends $Command<DisconnectUserCommandInput, DisconnectUserCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -31,6 +31,29 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetLoggingConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetLoggingConfigurationResponse
|
|
35
|
+
* // arn: "STRING_VALUE",
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
38
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // name: "STRING_VALUE",
|
|
40
|
+
* // destinationConfiguration: { // DestinationConfiguration Union: only one key present
|
|
41
|
+
* // s3: { // S3DestinationConfiguration
|
|
42
|
+
* // bucketName: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // cloudWatchLogs: { // CloudWatchLogsDestinationConfiguration
|
|
45
|
+
* // logGroupName: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // firehose: { // FirehoseDestinationConfiguration
|
|
48
|
+
* // deliveryStreamName: "STRING_VALUE", // required
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // state: "STRING_VALUE",
|
|
52
|
+
* // tags: { // Tags
|
|
53
|
+
* // "<keys>": "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
34
57
|
* ```
|
|
35
58
|
*
|
|
36
59
|
* @param GetLoggingConfigurationCommandInput - {@link GetLoggingConfigurationCommandInput}
|
|
@@ -48,6 +71,8 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
|
|
|
48
71
|
* @throws {@link ValidationException} (client fault)
|
|
49
72
|
* <p/>
|
|
50
73
|
*
|
|
74
|
+
* @throws {@link IvschatServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
51
76
|
*
|
|
52
77
|
*/
|
|
53
78
|
export declare class GetLoggingConfigurationCommand extends $Command<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -31,6 +31,26 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetRoomCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetRoomResponse
|
|
35
|
+
* // arn: "STRING_VALUE",
|
|
36
|
+
* // id: "STRING_VALUE",
|
|
37
|
+
* // name: "STRING_VALUE",
|
|
38
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
39
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // maximumMessageRatePerSecond: Number("int"),
|
|
41
|
+
* // maximumMessageLength: Number("int"),
|
|
42
|
+
* // messageReviewHandler: { // MessageReviewHandler
|
|
43
|
+
* // uri: "STRING_VALUE",
|
|
44
|
+
* // fallbackResult: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // tags: { // Tags
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
34
54
|
* ```
|
|
35
55
|
*
|
|
36
56
|
* @param GetRoomCommandInput - {@link GetRoomCommandInput}
|
|
@@ -48,6 +68,8 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer
|
|
|
48
68
|
* @throws {@link ValidationException} (client fault)
|
|
49
69
|
* <p/>
|
|
50
70
|
*
|
|
71
|
+
* @throws {@link IvschatServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
51
73
|
*
|
|
52
74
|
*/
|
|
53
75
|
export declare class GetRoomCommand extends $Command<GetRoomCommandInput, GetRoomCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -33,6 +33,34 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListLoggingConfigurationsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListLoggingConfigurationsResponse
|
|
37
|
+
* // loggingConfigurations: [ // LoggingConfigurationList // required
|
|
38
|
+
* // { // LoggingConfigurationSummary
|
|
39
|
+
* // arn: "STRING_VALUE",
|
|
40
|
+
* // id: "STRING_VALUE",
|
|
41
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
42
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
43
|
+
* // name: "STRING_VALUE",
|
|
44
|
+
* // destinationConfiguration: { // DestinationConfiguration Union: only one key present
|
|
45
|
+
* // s3: { // S3DestinationConfiguration
|
|
46
|
+
* // bucketName: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // cloudWatchLogs: { // CloudWatchLogsDestinationConfiguration
|
|
49
|
+
* // logGroupName: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // firehose: { // FirehoseDestinationConfiguration
|
|
52
|
+
* // deliveryStreamName: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // state: "STRING_VALUE",
|
|
56
|
+
* // tags: { // Tags
|
|
57
|
+
* // "<keys>": "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
36
64
|
* ```
|
|
37
65
|
*
|
|
38
66
|
* @param ListLoggingConfigurationsCommandInput - {@link ListLoggingConfigurationsCommandInput}
|
|
@@ -47,6 +75,8 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
|
|
|
47
75
|
* @throws {@link ValidationException} (client fault)
|
|
48
76
|
* <p/>
|
|
49
77
|
*
|
|
78
|
+
* @throws {@link IvschatServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
50
80
|
*
|
|
51
81
|
*/
|
|
52
82
|
export declare class ListLoggingConfigurationsCommand extends $Command<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -36,6 +36,29 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListRoomsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListRoomsResponse
|
|
40
|
+
* // rooms: [ // RoomList // required
|
|
41
|
+
* // { // RoomSummary
|
|
42
|
+
* // arn: "STRING_VALUE",
|
|
43
|
+
* // id: "STRING_VALUE",
|
|
44
|
+
* // name: "STRING_VALUE",
|
|
45
|
+
* // messageReviewHandler: { // MessageReviewHandler
|
|
46
|
+
* // uri: "STRING_VALUE",
|
|
47
|
+
* // fallbackResult: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // tags: { // Tags
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // nextToken: "STRING_VALUE",
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
39
62
|
* ```
|
|
40
63
|
*
|
|
41
64
|
* @param ListRoomsCommandInput - {@link ListRoomsCommandInput}
|
|
@@ -53,6 +76,8 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea
|
|
|
53
76
|
* @throws {@link ValidationException} (client fault)
|
|
54
77
|
* <p/>
|
|
55
78
|
*
|
|
79
|
+
* @throws {@link IvschatServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
56
81
|
*
|
|
57
82
|
*/
|
|
58
83
|
export declare class ListRoomsCommand extends $Command<ListRoomsCommandInput, ListRoomsCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // Tags // required
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p/>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link IvschatServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -37,6 +37,10 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new SendEventCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // SendEventResponse
|
|
41
|
+
* // id: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param SendEventCommandInput - {@link SendEventCommandInput}
|
|
@@ -60,6 +64,8 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
|
|
|
60
64
|
* @throws {@link ValidationException} (client fault)
|
|
61
65
|
* <p/>
|
|
62
66
|
*
|
|
67
|
+
* @throws {@link IvschatServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
63
69
|
*
|
|
64
70
|
*/
|
|
65
71
|
export declare class SendEventCommand extends $Command<SendEventCommandInput, SendEventCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p/>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link IvschatServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p/>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link IvschatServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -43,6 +43,29 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new UpdateLoggingConfigurationCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // UpdateLoggingConfigurationResponse
|
|
47
|
+
* // arn: "STRING_VALUE",
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
51
|
+
* // name: "STRING_VALUE",
|
|
52
|
+
* // destinationConfiguration: { // DestinationConfiguration Union: only one key present
|
|
53
|
+
* // s3: { // S3DestinationConfiguration
|
|
54
|
+
* // bucketName: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // cloudWatchLogs: { // CloudWatchLogsDestinationConfiguration
|
|
57
|
+
* // logGroupName: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // firehose: { // FirehoseDestinationConfiguration
|
|
60
|
+
* // deliveryStreamName: "STRING_VALUE", // required
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // state: "STRING_VALUE",
|
|
64
|
+
* // tags: { // Tags
|
|
65
|
+
* // "<keys>": "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
46
69
|
* ```
|
|
47
70
|
*
|
|
48
71
|
* @param UpdateLoggingConfigurationCommandInput - {@link UpdateLoggingConfigurationCommandInput}
|
|
@@ -66,6 +89,8 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
|
|
|
66
89
|
* @throws {@link ValidationException} (client fault)
|
|
67
90
|
* <p/>
|
|
68
91
|
*
|
|
92
|
+
* @throws {@link IvschatServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
69
94
|
*
|
|
70
95
|
*/
|
|
71
96
|
export declare class UpdateLoggingConfigurationCommand extends $Command<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig> {
|
|
@@ -41,6 +41,26 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new UpdateRoomCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // UpdateRoomResponse
|
|
45
|
+
* // arn: "STRING_VALUE",
|
|
46
|
+
* // id: "STRING_VALUE",
|
|
47
|
+
* // name: "STRING_VALUE",
|
|
48
|
+
* // createTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // updateTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // maximumMessageRatePerSecond: Number("int"),
|
|
51
|
+
* // maximumMessageLength: Number("int"),
|
|
52
|
+
* // messageReviewHandler: { // MessageReviewHandler
|
|
53
|
+
* // uri: "STRING_VALUE",
|
|
54
|
+
* // fallbackResult: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // tags: { // Tags
|
|
57
|
+
* // "<keys>": "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
44
64
|
* ```
|
|
45
65
|
*
|
|
46
66
|
* @param UpdateRoomCommandInput - {@link UpdateRoomCommandInput}
|
|
@@ -61,6 +81,8 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB
|
|
|
61
81
|
* @throws {@link ValidationException} (client fault)
|
|
62
82
|
* <p/>
|
|
63
83
|
*
|
|
84
|
+
* @throws {@link IvschatServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Ivschat service.</p>
|
|
64
86
|
*
|
|
65
87
|
*/
|
|
66
88
|
export declare class UpdateRoomCommand extends $Command<UpdateRoomCommandInput, UpdateRoomCommandOutput, IvschatClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivschat",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|