@aws-sdk/client-ivschat 3.296.0 → 3.298.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-cjs/commands/CreateChatTokenCommand.js +2 -3
- package/dist-cjs/commands/CreateLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/CreateRoomCommand.js +2 -3
- package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DeleteMessageCommand.js +2 -3
- package/dist-cjs/commands/DeleteRoomCommand.js +2 -3
- package/dist-cjs/commands/DisconnectUserCommand.js +2 -3
- package/dist-cjs/commands/GetLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/GetRoomCommand.js +2 -3
- package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +2 -3
- package/dist-cjs/commands/ListRoomsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/SendEventCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -3
- package/dist-cjs/commands/UpdateRoomCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -190
- package/dist-es/commands/CreateChatTokenCommand.js +2 -3
- package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/CreateRoomCommand.js +2 -3
- package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/DeleteMessageCommand.js +2 -3
- package/dist-es/commands/DeleteRoomCommand.js +2 -3
- package/dist-es/commands/DisconnectUserCommand.js +2 -3
- package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/GetRoomCommand.js +2 -3
- package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -3
- package/dist-es/commands/ListRoomsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/SendEventCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -3
- package/dist-es/commands/UpdateRoomCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -148
- package/dist-types/Ivschat.d.ts +18 -0
- package/dist-types/IvschatClient.d.ts +24 -4
- package/dist-types/commands/CreateChatTokenCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateRoomCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMessageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRoomCommand.d.ts +16 -0
- package/dist-types/commands/DisconnectUserCommand.d.ts +16 -0
- package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetRoomCommand.d.ts +16 -0
- package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListRoomsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/SendEventCommand.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/UpdateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateRoomCommand.d.ts +16 -0
- package/dist-types/models/IvschatServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +136 -160
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListLoggingConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRoomsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -118
- package/package.json +4 -3
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DeleteRoomRequestFilterSensitiveLog } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1DeleteRoomCommand, serializeAws_restJson1DeleteRoomCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class DeleteRoomCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DeleteRoomCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog: (
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DisconnectUserRequestFilterSensitiveLog, DisconnectUserResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1DisconnectUserCommand, serializeAws_restJson1DisconnectUserCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class DisconnectUserCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class DisconnectUserCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetLoggingConfigurationRequestFilterSensitiveLog, GetLoggingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1GetLoggingConfigurationCommand, serializeAws_restJson1GetLoggingConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class GetLoggingConfigurationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class GetLoggingConfigurationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { GetRoomRequestFilterSensitiveLog, GetRoomResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1GetRoomCommand, serializeAws_restJson1GetRoomCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class GetRoomCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class GetRoomCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListLoggingConfigurationsRequestFilterSensitiveLog, ListLoggingConfigurationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListLoggingConfigurationsCommand, serializeAws_restJson1ListLoggingConfigurationsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListLoggingConfigurationsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListLoggingConfigurationsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListRoomsRequestFilterSensitiveLog, ListRoomsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListRoomsCommand, serializeAws_restJson1ListRoomsCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListRoomsCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListRoomsCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class ListTagsForResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class ListTagsForResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { SendEventRequestFilterSensitiveLog, SendEventResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1SendEventCommand, serializeAws_restJson1SendEventCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class SendEventCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class SendEventCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class TagResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class TagResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UntagResourceCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UntagResourceCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateLoggingConfigurationRequestFilterSensitiveLog, UpdateLoggingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateLoggingConfigurationCommand, serializeAws_restJson1UpdateLoggingConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateLoggingConfigurationCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateLoggingConfigurationCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { UpdateRoomRequestFilterSensitiveLog, UpdateRoomResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_restJson1UpdateRoomCommand, serializeAws_restJson1UpdateRoomCommand, } from "../protocols/Aws_restJson1";
|
|
6
5
|
export class UpdateRoomCommand extends $Command {
|
|
7
6
|
static getEndpointParameterInstructions() {
|
|
@@ -27,8 +26,8 @@ export class UpdateRoomCommand extends $Command {
|
|
|
27
26
|
logger,
|
|
28
27
|
clientName,
|
|
29
28
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
29
|
+
inputFilterSensitiveLog: (_) => _,
|
|
30
|
+
outputFilterSensitiveLog: (_) => _,
|
|
32
31
|
};
|
|
33
32
|
const { requestHandler } = configuration;
|
|
34
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -158,151 +158,3 @@ export var UpdateLoggingConfigurationState;
|
|
|
158
158
|
(function (UpdateLoggingConfigurationState) {
|
|
159
159
|
UpdateLoggingConfigurationState["ACTIVE"] = "ACTIVE";
|
|
160
160
|
})(UpdateLoggingConfigurationState || (UpdateLoggingConfigurationState = {}));
|
|
161
|
-
export const CreateChatTokenRequestFilterSensitiveLog = (obj) => ({
|
|
162
|
-
...obj,
|
|
163
|
-
});
|
|
164
|
-
export const CreateChatTokenResponseFilterSensitiveLog = (obj) => ({
|
|
165
|
-
...obj,
|
|
166
|
-
});
|
|
167
|
-
export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
|
|
168
|
-
...obj,
|
|
169
|
-
});
|
|
170
|
-
export const CloudWatchLogsDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const FirehoseDestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
});
|
|
176
|
-
export const S3DestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
177
|
-
...obj,
|
|
178
|
-
});
|
|
179
|
-
export const DestinationConfigurationFilterSensitiveLog = (obj) => {
|
|
180
|
-
if (obj.s3 !== undefined)
|
|
181
|
-
return { s3: S3DestinationConfigurationFilterSensitiveLog(obj.s3) };
|
|
182
|
-
if (obj.cloudWatchLogs !== undefined)
|
|
183
|
-
return { cloudWatchLogs: CloudWatchLogsDestinationConfigurationFilterSensitiveLog(obj.cloudWatchLogs) };
|
|
184
|
-
if (obj.firehose !== undefined)
|
|
185
|
-
return { firehose: FirehoseDestinationConfigurationFilterSensitiveLog(obj.firehose) };
|
|
186
|
-
if (obj.$unknown !== undefined)
|
|
187
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
188
|
-
};
|
|
189
|
-
export const CreateLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
...(obj.destinationConfiguration && {
|
|
192
|
-
destinationConfiguration: DestinationConfigurationFilterSensitiveLog(obj.destinationConfiguration),
|
|
193
|
-
}),
|
|
194
|
-
});
|
|
195
|
-
export const CreateLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
196
|
-
...obj,
|
|
197
|
-
...(obj.destinationConfiguration && {
|
|
198
|
-
destinationConfiguration: DestinationConfigurationFilterSensitiveLog(obj.destinationConfiguration),
|
|
199
|
-
}),
|
|
200
|
-
});
|
|
201
|
-
export const MessageReviewHandlerFilterSensitiveLog = (obj) => ({
|
|
202
|
-
...obj,
|
|
203
|
-
});
|
|
204
|
-
export const CreateRoomRequestFilterSensitiveLog = (obj) => ({
|
|
205
|
-
...obj,
|
|
206
|
-
});
|
|
207
|
-
export const CreateRoomResponseFilterSensitiveLog = (obj) => ({
|
|
208
|
-
...obj,
|
|
209
|
-
});
|
|
210
|
-
export const DeleteLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
211
|
-
...obj,
|
|
212
|
-
});
|
|
213
|
-
export const DeleteMessageRequestFilterSensitiveLog = (obj) => ({
|
|
214
|
-
...obj,
|
|
215
|
-
});
|
|
216
|
-
export const DeleteMessageResponseFilterSensitiveLog = (obj) => ({
|
|
217
|
-
...obj,
|
|
218
|
-
});
|
|
219
|
-
export const DeleteRoomRequestFilterSensitiveLog = (obj) => ({
|
|
220
|
-
...obj,
|
|
221
|
-
});
|
|
222
|
-
export const DisconnectUserRequestFilterSensitiveLog = (obj) => ({
|
|
223
|
-
...obj,
|
|
224
|
-
});
|
|
225
|
-
export const DisconnectUserResponseFilterSensitiveLog = (obj) => ({
|
|
226
|
-
...obj,
|
|
227
|
-
});
|
|
228
|
-
export const GetLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
229
|
-
...obj,
|
|
230
|
-
});
|
|
231
|
-
export const GetLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
232
|
-
...obj,
|
|
233
|
-
...(obj.destinationConfiguration && {
|
|
234
|
-
destinationConfiguration: DestinationConfigurationFilterSensitiveLog(obj.destinationConfiguration),
|
|
235
|
-
}),
|
|
236
|
-
});
|
|
237
|
-
export const GetRoomRequestFilterSensitiveLog = (obj) => ({
|
|
238
|
-
...obj,
|
|
239
|
-
});
|
|
240
|
-
export const GetRoomResponseFilterSensitiveLog = (obj) => ({
|
|
241
|
-
...obj,
|
|
242
|
-
});
|
|
243
|
-
export const ListLoggingConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
244
|
-
...obj,
|
|
245
|
-
});
|
|
246
|
-
export const LoggingConfigurationSummaryFilterSensitiveLog = (obj) => ({
|
|
247
|
-
...obj,
|
|
248
|
-
...(obj.destinationConfiguration && {
|
|
249
|
-
destinationConfiguration: DestinationConfigurationFilterSensitiveLog(obj.destinationConfiguration),
|
|
250
|
-
}),
|
|
251
|
-
});
|
|
252
|
-
export const ListLoggingConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
253
|
-
...obj,
|
|
254
|
-
...(obj.loggingConfigurations && {
|
|
255
|
-
loggingConfigurations: obj.loggingConfigurations.map((item) => LoggingConfigurationSummaryFilterSensitiveLog(item)),
|
|
256
|
-
}),
|
|
257
|
-
});
|
|
258
|
-
export const ListRoomsRequestFilterSensitiveLog = (obj) => ({
|
|
259
|
-
...obj,
|
|
260
|
-
});
|
|
261
|
-
export const RoomSummaryFilterSensitiveLog = (obj) => ({
|
|
262
|
-
...obj,
|
|
263
|
-
});
|
|
264
|
-
export const ListRoomsResponseFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
});
|
|
267
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
268
|
-
...obj,
|
|
269
|
-
});
|
|
270
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
271
|
-
...obj,
|
|
272
|
-
});
|
|
273
|
-
export const SendEventRequestFilterSensitiveLog = (obj) => ({
|
|
274
|
-
...obj,
|
|
275
|
-
});
|
|
276
|
-
export const SendEventResponseFilterSensitiveLog = (obj) => ({
|
|
277
|
-
...obj,
|
|
278
|
-
});
|
|
279
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
280
|
-
...obj,
|
|
281
|
-
});
|
|
282
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
});
|
|
285
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
286
|
-
...obj,
|
|
287
|
-
});
|
|
288
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
289
|
-
...obj,
|
|
290
|
-
});
|
|
291
|
-
export const UpdateLoggingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
292
|
-
...obj,
|
|
293
|
-
...(obj.destinationConfiguration && {
|
|
294
|
-
destinationConfiguration: DestinationConfigurationFilterSensitiveLog(obj.destinationConfiguration),
|
|
295
|
-
}),
|
|
296
|
-
});
|
|
297
|
-
export const UpdateLoggingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
298
|
-
...obj,
|
|
299
|
-
...(obj.destinationConfiguration && {
|
|
300
|
-
destinationConfiguration: DestinationConfigurationFilterSensitiveLog(obj.destinationConfiguration),
|
|
301
|
-
}),
|
|
302
|
-
});
|
|
303
|
-
export const UpdateRoomRequestFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
export const UpdateRoomResponseFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
package/dist-types/Ivschat.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationComma
|
|
|
18
18
|
import { UpdateRoomCommandInput, UpdateRoomCommandOutput } from "./commands/UpdateRoomCommand";
|
|
19
19
|
import { IvschatClient } from "./IvschatClient";
|
|
20
20
|
/**
|
|
21
|
+
* @public
|
|
21
22
|
* <p>
|
|
22
23
|
* <b>Introduction</b>
|
|
23
24
|
* </p>
|
|
@@ -240,6 +241,7 @@ import { IvschatClient } from "./IvschatClient";
|
|
|
240
241
|
*/
|
|
241
242
|
export declare class Ivschat extends IvschatClient {
|
|
242
243
|
/**
|
|
244
|
+
* @public
|
|
243
245
|
* <p>Creates an encrypted token that is used by a chat participant to establish an individual
|
|
244
246
|
* WebSocket chat connection to a room. When the token is used to connect to chat, the
|
|
245
247
|
* connection is valid for the session duration specified in the request. The token becomes
|
|
@@ -257,6 +259,7 @@ export declare class Ivschat extends IvschatClient {
|
|
|
257
259
|
createChatToken(args: CreateChatTokenCommandInput, cb: (err: any, data?: CreateChatTokenCommandOutput) => void): void;
|
|
258
260
|
createChatToken(args: CreateChatTokenCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateChatTokenCommandOutput) => void): void;
|
|
259
261
|
/**
|
|
262
|
+
* @public
|
|
260
263
|
* <p>Creates a logging configuration that allows clients to store and record sent
|
|
261
264
|
* messages.</p>
|
|
262
265
|
*/
|
|
@@ -264,18 +267,21 @@ export declare class Ivschat extends IvschatClient {
|
|
|
264
267
|
createLoggingConfiguration(args: CreateLoggingConfigurationCommandInput, cb: (err: any, data?: CreateLoggingConfigurationCommandOutput) => void): void;
|
|
265
268
|
createLoggingConfiguration(args: CreateLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoggingConfigurationCommandOutput) => void): void;
|
|
266
269
|
/**
|
|
270
|
+
* @public
|
|
267
271
|
* <p>Creates a room that allows clients to connect and pass messages.</p>
|
|
268
272
|
*/
|
|
269
273
|
createRoom(args: CreateRoomCommandInput, options?: __HttpHandlerOptions): Promise<CreateRoomCommandOutput>;
|
|
270
274
|
createRoom(args: CreateRoomCommandInput, cb: (err: any, data?: CreateRoomCommandOutput) => void): void;
|
|
271
275
|
createRoom(args: CreateRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRoomCommandOutput) => void): void;
|
|
272
276
|
/**
|
|
277
|
+
* @public
|
|
273
278
|
* <p>Deletes the specified logging configuration.</p>
|
|
274
279
|
*/
|
|
275
280
|
deleteLoggingConfiguration(args: DeleteLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoggingConfigurationCommandOutput>;
|
|
276
281
|
deleteLoggingConfiguration(args: DeleteLoggingConfigurationCommandInput, cb: (err: any, data?: DeleteLoggingConfigurationCommandOutput) => void): void;
|
|
277
282
|
deleteLoggingConfiguration(args: DeleteLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoggingConfigurationCommandOutput) => void): void;
|
|
278
283
|
/**
|
|
284
|
+
* @public
|
|
279
285
|
* <p>Sends an event to a specific room which directs clients to delete a specific message;
|
|
280
286
|
* that is, unrender it from view and delete it from the client’s chat history. This event’s
|
|
281
287
|
* <code>EventName</code> is <code>aws:DELETE_MESSAGE</code>. This replicates the <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-deletemessage-publish.html">
|
|
@@ -285,12 +291,14 @@ export declare class Ivschat extends IvschatClient {
|
|
|
285
291
|
deleteMessage(args: DeleteMessageCommandInput, cb: (err: any, data?: DeleteMessageCommandOutput) => void): void;
|
|
286
292
|
deleteMessage(args: DeleteMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMessageCommandOutput) => void): void;
|
|
287
293
|
/**
|
|
294
|
+
* @public
|
|
288
295
|
* <p>Deletes the specified room.</p>
|
|
289
296
|
*/
|
|
290
297
|
deleteRoom(args: DeleteRoomCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRoomCommandOutput>;
|
|
291
298
|
deleteRoom(args: DeleteRoomCommandInput, cb: (err: any, data?: DeleteRoomCommandOutput) => void): void;
|
|
292
299
|
deleteRoom(args: DeleteRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRoomCommandOutput) => void): void;
|
|
293
300
|
/**
|
|
301
|
+
* @public
|
|
294
302
|
* <p>Disconnects all connections using a specified user ID from a room. This replicates the
|
|
295
303
|
* <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-disconnectuser-publish.html">
|
|
296
304
|
* DisconnectUser</a> WebSocket operation in the Amazon IVS Chat Messaging API.</p>
|
|
@@ -299,18 +307,21 @@ export declare class Ivschat extends IvschatClient {
|
|
|
299
307
|
disconnectUser(args: DisconnectUserCommandInput, cb: (err: any, data?: DisconnectUserCommandOutput) => void): void;
|
|
300
308
|
disconnectUser(args: DisconnectUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisconnectUserCommandOutput) => void): void;
|
|
301
309
|
/**
|
|
310
|
+
* @public
|
|
302
311
|
* <p>Gets the specified logging configuration.</p>
|
|
303
312
|
*/
|
|
304
313
|
getLoggingConfiguration(args: GetLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetLoggingConfigurationCommandOutput>;
|
|
305
314
|
getLoggingConfiguration(args: GetLoggingConfigurationCommandInput, cb: (err: any, data?: GetLoggingConfigurationCommandOutput) => void): void;
|
|
306
315
|
getLoggingConfiguration(args: GetLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLoggingConfigurationCommandOutput) => void): void;
|
|
307
316
|
/**
|
|
317
|
+
* @public
|
|
308
318
|
* <p>Gets the specified room.</p>
|
|
309
319
|
*/
|
|
310
320
|
getRoom(args: GetRoomCommandInput, options?: __HttpHandlerOptions): Promise<GetRoomCommandOutput>;
|
|
311
321
|
getRoom(args: GetRoomCommandInput, cb: (err: any, data?: GetRoomCommandOutput) => void): void;
|
|
312
322
|
getRoom(args: GetRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRoomCommandOutput) => void): void;
|
|
313
323
|
/**
|
|
324
|
+
* @public
|
|
314
325
|
* <p>Gets summary information about all your logging configurations in the AWS region where
|
|
315
326
|
* the API request is processed.</p>
|
|
316
327
|
*/
|
|
@@ -318,6 +329,7 @@ export declare class Ivschat extends IvschatClient {
|
|
|
318
329
|
listLoggingConfigurations(args: ListLoggingConfigurationsCommandInput, cb: (err: any, data?: ListLoggingConfigurationsCommandOutput) => void): void;
|
|
319
330
|
listLoggingConfigurations(args: ListLoggingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLoggingConfigurationsCommandOutput) => void): void;
|
|
320
331
|
/**
|
|
332
|
+
* @public
|
|
321
333
|
* <p>Gets summary information about all your rooms in the AWS region where the API request is
|
|
322
334
|
* processed. Results are sorted in descending order of <code>updateTime</code>.</p>
|
|
323
335
|
*/
|
|
@@ -325,12 +337,14 @@ export declare class Ivschat extends IvschatClient {
|
|
|
325
337
|
listRooms(args: ListRoomsCommandInput, cb: (err: any, data?: ListRoomsCommandOutput) => void): void;
|
|
326
338
|
listRooms(args: ListRoomsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoomsCommandOutput) => void): void;
|
|
327
339
|
/**
|
|
340
|
+
* @public
|
|
328
341
|
* <p>Gets information about AWS tags for the specified ARN.</p>
|
|
329
342
|
*/
|
|
330
343
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
331
344
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
332
345
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
333
346
|
/**
|
|
347
|
+
* @public
|
|
334
348
|
* <p>Sends an event to a room. Use this within your application’s business logic to send
|
|
335
349
|
* events to clients of a room; e.g., to notify clients to change the way the chat UI is
|
|
336
350
|
* rendered.</p>
|
|
@@ -339,24 +353,28 @@ export declare class Ivschat extends IvschatClient {
|
|
|
339
353
|
sendEvent(args: SendEventCommandInput, cb: (err: any, data?: SendEventCommandOutput) => void): void;
|
|
340
354
|
sendEvent(args: SendEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendEventCommandOutput) => void): void;
|
|
341
355
|
/**
|
|
356
|
+
* @public
|
|
342
357
|
* <p>Adds or updates tags for the AWS resource with the specified ARN.</p>
|
|
343
358
|
*/
|
|
344
359
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
345
360
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
346
361
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
347
362
|
/**
|
|
363
|
+
* @public
|
|
348
364
|
* <p>Removes tags from the resource with the specified ARN.</p>
|
|
349
365
|
*/
|
|
350
366
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
351
367
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
352
368
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
353
369
|
/**
|
|
370
|
+
* @public
|
|
354
371
|
* <p>Updates a specified logging configuration.</p>
|
|
355
372
|
*/
|
|
356
373
|
updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLoggingConfigurationCommandOutput>;
|
|
357
374
|
updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void): void;
|
|
358
375
|
updateLoggingConfiguration(args: UpdateLoggingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLoggingConfigurationCommandOutput) => void): void;
|
|
359
376
|
/**
|
|
377
|
+
* @public
|
|
360
378
|
* <p>Updates a room’s configuration.</p>
|
|
361
379
|
*/
|
|
362
380
|
updateRoom(args: UpdateRoomCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRoomCommandOutput>;
|
|
@@ -25,15 +25,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
25
25
|
import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput } from "./commands/UpdateLoggingConfigurationCommand";
|
|
26
26
|
import { UpdateRoomCommandInput, UpdateRoomCommandOutput } from "./commands/UpdateRoomCommand";
|
|
27
27
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
28
31
|
export type ServiceInputTypes = CreateChatTokenCommandInput | CreateLoggingConfigurationCommandInput | CreateRoomCommandInput | DeleteLoggingConfigurationCommandInput | DeleteMessageCommandInput | DeleteRoomCommandInput | DisconnectUserCommandInput | GetLoggingConfigurationCommandInput | GetRoomCommandInput | ListLoggingConfigurationsCommandInput | ListRoomsCommandInput | ListTagsForResourceCommandInput | SendEventCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateLoggingConfigurationCommandInput | UpdateRoomCommandInput;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
29
35
|
export type ServiceOutputTypes = CreateChatTokenCommandOutput | CreateLoggingConfigurationCommandOutput | CreateRoomCommandOutput | DeleteLoggingConfigurationCommandOutput | DeleteMessageCommandOutput | DeleteRoomCommandOutput | DisconnectUserCommandOutput | GetLoggingConfigurationCommandOutput | GetRoomCommandOutput | ListLoggingConfigurationsCommandOutput | ListRoomsCommandOutput | ListTagsForResourceCommandOutput | SendEventCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateLoggingConfigurationCommandOutput | UpdateRoomCommandOutput;
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
30
39
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
31
40
|
/**
|
|
32
41
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
33
42
|
*/
|
|
34
43
|
requestHandler?: __HttpHandler;
|
|
35
44
|
/**
|
|
36
|
-
* A constructor for a class implementing the {@link
|
|
45
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
37
46
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
38
47
|
* @internal
|
|
39
48
|
*/
|
|
@@ -123,23 +132,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
123
132
|
*/
|
|
124
133
|
logger?: __Logger;
|
|
125
134
|
/**
|
|
126
|
-
* The {@link
|
|
135
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
127
136
|
*/
|
|
128
137
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
129
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
130
142
|
type IvschatClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
131
143
|
/**
|
|
132
|
-
*
|
|
144
|
+
* @public
|
|
145
|
+
*
|
|
146
|
+
* The configuration interface of IvschatClient class constructor that set the region, credentials and other options.
|
|
133
147
|
*/
|
|
134
148
|
export interface IvschatClientConfig extends IvschatClientConfigType {
|
|
135
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
136
153
|
type IvschatClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
137
154
|
/**
|
|
138
|
-
*
|
|
155
|
+
* @public
|
|
156
|
+
*
|
|
157
|
+
* The resolved configuration interface of IvschatClient class. This is resolved and normalized from the {@link IvschatClientConfig | constructor configuration interface}.
|
|
139
158
|
*/
|
|
140
159
|
export interface IvschatClientResolvedConfig extends IvschatClientResolvedConfigType {
|
|
141
160
|
}
|
|
142
161
|
/**
|
|
162
|
+
* @public
|
|
143
163
|
* <p>
|
|
144
164
|
* <b>Introduction</b>
|
|
145
165
|
* </p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient";
|
|
5
5
|
import { CreateChatTokenRequest, CreateChatTokenResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateChatTokenCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateChatTokenCommandInput extends CreateChatTokenRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateChatTokenCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an encrypted token that is used by a chat participant to establish an individual
|
|
18
23
|
* WebSocket chat connection to a room. When the token is used to connect to chat, the
|
|
19
24
|
* connection is valid for the session duration specified in the request. The token becomes
|
|
@@ -36,6 +41,8 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param CreateChatTokenCommandInput - {@link CreateChatTokenCommandInput}
|
|
45
|
+
* @returns {@link CreateChatTokenCommandOutput}
|
|
39
46
|
* @see {@link CreateChatTokenCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link CreateChatTokenCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link IvschatClientResolvedConfig | config} for IvschatClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _
|
|
|
57
64
|
export declare class CreateChatTokenCommand extends $Command<CreateChatTokenCommandInput, CreateChatTokenCommandOutput, IvschatClientResolvedConfig> {
|
|
58
65
|
readonly input: CreateChatTokenCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: CreateChatTokenCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IvschatClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateChatTokenCommandInput, CreateChatTokenCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|