@aws-sdk/client-chime-sdk-meetings 3.1077.0 → 3.1078.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/index.js +24 -163
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/BatchCreateAttendeeCommand.js +2 -14
- package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +2 -14
- package/dist-es/commands/CreateAttendeeCommand.js +2 -14
- package/dist-es/commands/CreateMeetingCommand.js +2 -14
- package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +2 -14
- package/dist-es/commands/DeleteAttendeeCommand.js +2 -14
- package/dist-es/commands/DeleteMeetingCommand.js +2 -14
- package/dist-es/commands/GetAttendeeCommand.js +2 -14
- package/dist-es/commands/GetMeetingCommand.js +2 -14
- package/dist-es/commands/ListAttendeesCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/StartMeetingTranscriptionCommand.js +2 -14
- package/dist-es/commands/StopMeetingTranscriptionCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/BatchCreateAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +3 -8
- package/dist-types/commands/CreateAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/CreateMeetingCommand.d.ts +3 -8
- package/dist-types/commands/CreateMeetingWithAttendeesCommand.d.ts +3 -8
- package/dist-types/commands/DeleteAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMeetingCommand.d.ts +3 -8
- package/dist-types/commands/GetAttendeeCommand.d.ts +3 -8
- package/dist-types/commands/GetMeetingCommand.d.ts +3 -8
- package/dist-types/commands/ListAttendeesCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +3 -8
- package/dist-types/commands/StopMeetingTranscriptionCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/BatchCreateAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateMeetingCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateMeetingWithAttendeesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMeetingCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAttendeeCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetMeetingCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAttendeesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartMeetingTranscriptionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StopMeetingTranscriptionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateAttendeeCapabilitiesCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
-
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client,
|
|
4
|
-
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
5
6
|
exports.__Client = Client;
|
|
6
7
|
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
8
|
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
@@ -68,7 +69,7 @@ const commonParams = {
|
|
|
68
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
69
70
|
};
|
|
70
71
|
|
|
71
|
-
var version = "3.
|
|
72
|
+
var version = "3.1077.0";
|
|
72
73
|
var packageInfo = {
|
|
73
74
|
version: version};
|
|
74
75
|
|
|
@@ -1042,196 +1043,56 @@ class ChimeSDKMeetingsClient extends Client {
|
|
|
1042
1043
|
}
|
|
1043
1044
|
}
|
|
1044
1045
|
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
})
|
|
1051
|
-
.s("ChimeMeetingsSDKService", "BatchCreateAttendee", {})
|
|
1052
|
-
.n("ChimeSDKMeetingsClient", "BatchCreateAttendeeCommand")
|
|
1053
|
-
.sc(BatchCreateAttendee$)
|
|
1054
|
-
.build() {
|
|
1046
|
+
const command = makeBuilder(commonParams, "ChimeMeetingsSDKService", "ChimeSDKMeetingsClient", getEndpointPlugin);
|
|
1047
|
+
const _ep0 = {};
|
|
1048
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
1049
|
+
|
|
1050
|
+
class BatchCreateAttendeeCommand extends command(_ep0, _mw0, "BatchCreateAttendee", BatchCreateAttendee$) {
|
|
1055
1051
|
}
|
|
1056
1052
|
|
|
1057
|
-
class BatchUpdateAttendeeCapabilitiesExceptCommand extends
|
|
1058
|
-
.classBuilder()
|
|
1059
|
-
.ep(commonParams)
|
|
1060
|
-
.m(function (Command, cs, config, o) {
|
|
1061
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1062
|
-
})
|
|
1063
|
-
.s("ChimeMeetingsSDKService", "BatchUpdateAttendeeCapabilitiesExcept", {})
|
|
1064
|
-
.n("ChimeSDKMeetingsClient", "BatchUpdateAttendeeCapabilitiesExceptCommand")
|
|
1065
|
-
.sc(BatchUpdateAttendeeCapabilitiesExcept$)
|
|
1066
|
-
.build() {
|
|
1053
|
+
class BatchUpdateAttendeeCapabilitiesExceptCommand extends command(_ep0, _mw0, "BatchUpdateAttendeeCapabilitiesExcept", BatchUpdateAttendeeCapabilitiesExcept$) {
|
|
1067
1054
|
}
|
|
1068
1055
|
|
|
1069
|
-
class CreateAttendeeCommand extends
|
|
1070
|
-
.classBuilder()
|
|
1071
|
-
.ep(commonParams)
|
|
1072
|
-
.m(function (Command, cs, config, o) {
|
|
1073
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1074
|
-
})
|
|
1075
|
-
.s("ChimeMeetingsSDKService", "CreateAttendee", {})
|
|
1076
|
-
.n("ChimeSDKMeetingsClient", "CreateAttendeeCommand")
|
|
1077
|
-
.sc(CreateAttendee$)
|
|
1078
|
-
.build() {
|
|
1056
|
+
class CreateAttendeeCommand extends command(_ep0, _mw0, "CreateAttendee", CreateAttendee$) {
|
|
1079
1057
|
}
|
|
1080
1058
|
|
|
1081
|
-
class CreateMeetingCommand extends
|
|
1082
|
-
.classBuilder()
|
|
1083
|
-
.ep(commonParams)
|
|
1084
|
-
.m(function (Command, cs, config, o) {
|
|
1085
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1086
|
-
})
|
|
1087
|
-
.s("ChimeMeetingsSDKService", "CreateMeeting", {})
|
|
1088
|
-
.n("ChimeSDKMeetingsClient", "CreateMeetingCommand")
|
|
1089
|
-
.sc(CreateMeeting$)
|
|
1090
|
-
.build() {
|
|
1059
|
+
class CreateMeetingCommand extends command(_ep0, _mw0, "CreateMeeting", CreateMeeting$) {
|
|
1091
1060
|
}
|
|
1092
1061
|
|
|
1093
|
-
class CreateMeetingWithAttendeesCommand extends
|
|
1094
|
-
.classBuilder()
|
|
1095
|
-
.ep(commonParams)
|
|
1096
|
-
.m(function (Command, cs, config, o) {
|
|
1097
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1098
|
-
})
|
|
1099
|
-
.s("ChimeMeetingsSDKService", "CreateMeetingWithAttendees", {})
|
|
1100
|
-
.n("ChimeSDKMeetingsClient", "CreateMeetingWithAttendeesCommand")
|
|
1101
|
-
.sc(CreateMeetingWithAttendees$)
|
|
1102
|
-
.build() {
|
|
1062
|
+
class CreateMeetingWithAttendeesCommand extends command(_ep0, _mw0, "CreateMeetingWithAttendees", CreateMeetingWithAttendees$) {
|
|
1103
1063
|
}
|
|
1104
1064
|
|
|
1105
|
-
class DeleteAttendeeCommand extends
|
|
1106
|
-
.classBuilder()
|
|
1107
|
-
.ep(commonParams)
|
|
1108
|
-
.m(function (Command, cs, config, o) {
|
|
1109
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1110
|
-
})
|
|
1111
|
-
.s("ChimeMeetingsSDKService", "DeleteAttendee", {})
|
|
1112
|
-
.n("ChimeSDKMeetingsClient", "DeleteAttendeeCommand")
|
|
1113
|
-
.sc(DeleteAttendee$)
|
|
1114
|
-
.build() {
|
|
1065
|
+
class DeleteAttendeeCommand extends command(_ep0, _mw0, "DeleteAttendee", DeleteAttendee$) {
|
|
1115
1066
|
}
|
|
1116
1067
|
|
|
1117
|
-
class DeleteMeetingCommand extends
|
|
1118
|
-
.classBuilder()
|
|
1119
|
-
.ep(commonParams)
|
|
1120
|
-
.m(function (Command, cs, config, o) {
|
|
1121
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1122
|
-
})
|
|
1123
|
-
.s("ChimeMeetingsSDKService", "DeleteMeeting", {})
|
|
1124
|
-
.n("ChimeSDKMeetingsClient", "DeleteMeetingCommand")
|
|
1125
|
-
.sc(DeleteMeeting$)
|
|
1126
|
-
.build() {
|
|
1068
|
+
class DeleteMeetingCommand extends command(_ep0, _mw0, "DeleteMeeting", DeleteMeeting$) {
|
|
1127
1069
|
}
|
|
1128
1070
|
|
|
1129
|
-
class GetAttendeeCommand extends
|
|
1130
|
-
.classBuilder()
|
|
1131
|
-
.ep(commonParams)
|
|
1132
|
-
.m(function (Command, cs, config, o) {
|
|
1133
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1134
|
-
})
|
|
1135
|
-
.s("ChimeMeetingsSDKService", "GetAttendee", {})
|
|
1136
|
-
.n("ChimeSDKMeetingsClient", "GetAttendeeCommand")
|
|
1137
|
-
.sc(GetAttendee$)
|
|
1138
|
-
.build() {
|
|
1071
|
+
class GetAttendeeCommand extends command(_ep0, _mw0, "GetAttendee", GetAttendee$) {
|
|
1139
1072
|
}
|
|
1140
1073
|
|
|
1141
|
-
class GetMeetingCommand extends
|
|
1142
|
-
.classBuilder()
|
|
1143
|
-
.ep(commonParams)
|
|
1144
|
-
.m(function (Command, cs, config, o) {
|
|
1145
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1146
|
-
})
|
|
1147
|
-
.s("ChimeMeetingsSDKService", "GetMeeting", {})
|
|
1148
|
-
.n("ChimeSDKMeetingsClient", "GetMeetingCommand")
|
|
1149
|
-
.sc(GetMeeting$)
|
|
1150
|
-
.build() {
|
|
1074
|
+
class GetMeetingCommand extends command(_ep0, _mw0, "GetMeeting", GetMeeting$) {
|
|
1151
1075
|
}
|
|
1152
1076
|
|
|
1153
|
-
class ListAttendeesCommand extends
|
|
1154
|
-
.classBuilder()
|
|
1155
|
-
.ep(commonParams)
|
|
1156
|
-
.m(function (Command, cs, config, o) {
|
|
1157
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1158
|
-
})
|
|
1159
|
-
.s("ChimeMeetingsSDKService", "ListAttendees", {})
|
|
1160
|
-
.n("ChimeSDKMeetingsClient", "ListAttendeesCommand")
|
|
1161
|
-
.sc(ListAttendees$)
|
|
1162
|
-
.build() {
|
|
1077
|
+
class ListAttendeesCommand extends command(_ep0, _mw0, "ListAttendees", ListAttendees$) {
|
|
1163
1078
|
}
|
|
1164
1079
|
|
|
1165
|
-
class ListTagsForResourceCommand extends
|
|
1166
|
-
.classBuilder()
|
|
1167
|
-
.ep(commonParams)
|
|
1168
|
-
.m(function (Command, cs, config, o) {
|
|
1169
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1170
|
-
})
|
|
1171
|
-
.s("ChimeMeetingsSDKService", "ListTagsForResource", {})
|
|
1172
|
-
.n("ChimeSDKMeetingsClient", "ListTagsForResourceCommand")
|
|
1173
|
-
.sc(ListTagsForResource$)
|
|
1174
|
-
.build() {
|
|
1080
|
+
class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
|
|
1175
1081
|
}
|
|
1176
1082
|
|
|
1177
|
-
class StartMeetingTranscriptionCommand extends
|
|
1178
|
-
.classBuilder()
|
|
1179
|
-
.ep(commonParams)
|
|
1180
|
-
.m(function (Command, cs, config, o) {
|
|
1181
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1182
|
-
})
|
|
1183
|
-
.s("ChimeMeetingsSDKService", "StartMeetingTranscription", {})
|
|
1184
|
-
.n("ChimeSDKMeetingsClient", "StartMeetingTranscriptionCommand")
|
|
1185
|
-
.sc(StartMeetingTranscription$)
|
|
1186
|
-
.build() {
|
|
1083
|
+
class StartMeetingTranscriptionCommand extends command(_ep0, _mw0, "StartMeetingTranscription", StartMeetingTranscription$) {
|
|
1187
1084
|
}
|
|
1188
1085
|
|
|
1189
|
-
class StopMeetingTranscriptionCommand extends
|
|
1190
|
-
.classBuilder()
|
|
1191
|
-
.ep(commonParams)
|
|
1192
|
-
.m(function (Command, cs, config, o) {
|
|
1193
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1194
|
-
})
|
|
1195
|
-
.s("ChimeMeetingsSDKService", "StopMeetingTranscription", {})
|
|
1196
|
-
.n("ChimeSDKMeetingsClient", "StopMeetingTranscriptionCommand")
|
|
1197
|
-
.sc(StopMeetingTranscription$)
|
|
1198
|
-
.build() {
|
|
1086
|
+
class StopMeetingTranscriptionCommand extends command(_ep0, _mw0, "StopMeetingTranscription", StopMeetingTranscription$) {
|
|
1199
1087
|
}
|
|
1200
1088
|
|
|
1201
|
-
class TagResourceCommand extends
|
|
1202
|
-
.classBuilder()
|
|
1203
|
-
.ep(commonParams)
|
|
1204
|
-
.m(function (Command, cs, config, o) {
|
|
1205
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1206
|
-
})
|
|
1207
|
-
.s("ChimeMeetingsSDKService", "TagResource", {})
|
|
1208
|
-
.n("ChimeSDKMeetingsClient", "TagResourceCommand")
|
|
1209
|
-
.sc(TagResource$)
|
|
1210
|
-
.build() {
|
|
1089
|
+
class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
1211
1090
|
}
|
|
1212
1091
|
|
|
1213
|
-
class UntagResourceCommand extends
|
|
1214
|
-
.classBuilder()
|
|
1215
|
-
.ep(commonParams)
|
|
1216
|
-
.m(function (Command, cs, config, o) {
|
|
1217
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1218
|
-
})
|
|
1219
|
-
.s("ChimeMeetingsSDKService", "UntagResource", {})
|
|
1220
|
-
.n("ChimeSDKMeetingsClient", "UntagResourceCommand")
|
|
1221
|
-
.sc(UntagResource$)
|
|
1222
|
-
.build() {
|
|
1092
|
+
class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
|
|
1223
1093
|
}
|
|
1224
1094
|
|
|
1225
|
-
class UpdateAttendeeCapabilitiesCommand extends
|
|
1226
|
-
.classBuilder()
|
|
1227
|
-
.ep(commonParams)
|
|
1228
|
-
.m(function (Command, cs, config, o) {
|
|
1229
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1230
|
-
})
|
|
1231
|
-
.s("ChimeMeetingsSDKService", "UpdateAttendeeCapabilities", {})
|
|
1232
|
-
.n("ChimeSDKMeetingsClient", "UpdateAttendeeCapabilitiesCommand")
|
|
1233
|
-
.sc(UpdateAttendeeCapabilities$)
|
|
1234
|
-
.build() {
|
|
1095
|
+
class UpdateAttendeeCapabilitiesCommand extends command(_ep0, _mw0, "UpdateAttendeeCapabilities", UpdateAttendeeCapabilities$) {
|
|
1235
1096
|
}
|
|
1236
1097
|
|
|
1237
1098
|
const paginateListAttendees = createPaginator(ChimeSDKMeetingsClient, ListAttendeesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { makeBuilder } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "./endpoint/EndpointParameters";
|
|
4
|
+
export const command = makeBuilder(commonParams, "ChimeMeetingsSDKService", "ChimeSDKMeetingsClient", getEndpointPlugin);
|
|
5
|
+
export const _ep0 = {};
|
|
6
|
+
export const _mw0 = (Command, cs, config, o) => [];
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { BatchCreateAttendee$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class BatchCreateAttendeeCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "BatchCreateAttendee", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "BatchCreateAttendeeCommand")
|
|
14
|
-
.sc(BatchCreateAttendee$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class BatchCreateAttendeeCommand extends command(_ep0, _mw0, "BatchCreateAttendee", BatchCreateAttendee$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { BatchUpdateAttendeeCapabilitiesExcept$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "BatchUpdateAttendeeCapabilitiesExcept", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "BatchUpdateAttendeeCapabilitiesExceptCommand")
|
|
14
|
-
.sc(BatchUpdateAttendeeCapabilitiesExcept$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class BatchUpdateAttendeeCapabilitiesExceptCommand extends command(_ep0, _mw0, "BatchUpdateAttendeeCapabilitiesExcept", BatchUpdateAttendeeCapabilitiesExcept$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateAttendee$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateAttendeeCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "CreateAttendee", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "CreateAttendeeCommand")
|
|
14
|
-
.sc(CreateAttendee$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateAttendeeCommand extends command(_ep0, _mw0, "CreateAttendee", CreateAttendee$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateMeeting$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateMeetingCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "CreateMeeting", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "CreateMeetingCommand")
|
|
14
|
-
.sc(CreateMeeting$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateMeetingCommand extends command(_ep0, _mw0, "CreateMeeting", CreateMeeting$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { CreateMeetingWithAttendees$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class CreateMeetingWithAttendeesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "CreateMeetingWithAttendees", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "CreateMeetingWithAttendeesCommand")
|
|
14
|
-
.sc(CreateMeetingWithAttendees$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class CreateMeetingWithAttendeesCommand extends command(_ep0, _mw0, "CreateMeetingWithAttendees", CreateMeetingWithAttendees$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteAttendee$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteAttendeeCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "DeleteAttendee", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "DeleteAttendeeCommand")
|
|
14
|
-
.sc(DeleteAttendee$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteAttendeeCommand extends command(_ep0, _mw0, "DeleteAttendee", DeleteAttendee$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { DeleteMeeting$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class DeleteMeetingCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "DeleteMeeting", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "DeleteMeetingCommand")
|
|
14
|
-
.sc(DeleteMeeting$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class DeleteMeetingCommand extends command(_ep0, _mw0, "DeleteMeeting", DeleteMeeting$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetAttendee$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetAttendeeCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "GetAttendee", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "GetAttendeeCommand")
|
|
14
|
-
.sc(GetAttendee$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetAttendeeCommand extends command(_ep0, _mw0, "GetAttendee", GetAttendee$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { GetMeeting$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class GetMeetingCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "GetMeeting", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "GetMeetingCommand")
|
|
14
|
-
.sc(GetMeeting$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class GetMeetingCommand extends command(_ep0, _mw0, "GetMeeting", GetMeeting$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListAttendees$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListAttendeesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "ListAttendees", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "ListAttendeesCommand")
|
|
14
|
-
.sc(ListAttendees$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListAttendeesCommand extends command(_ep0, _mw0, "ListAttendees", ListAttendees$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class ListTagsForResourceCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "ListTagsForResource", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StartMeetingTranscription$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StartMeetingTranscriptionCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "StartMeetingTranscription", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "StartMeetingTranscriptionCommand")
|
|
14
|
-
.sc(StartMeetingTranscription$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StartMeetingTranscriptionCommand extends command(_ep0, _mw0, "StartMeetingTranscription", StartMeetingTranscription$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { StopMeetingTranscription$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class StopMeetingTranscriptionCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "StopMeetingTranscription", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "StopMeetingTranscriptionCommand")
|
|
14
|
-
.sc(StopMeetingTranscription$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class StopMeetingTranscriptionCommand extends command(_ep0, _mw0, "StopMeetingTranscription", StopMeetingTranscription$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class TagResourceCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "TagResource", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UntagResourceCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "UntagResource", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
|
|
16
4
|
}
|
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateAttendeeCapabilities$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateAttendeeCapabilitiesCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("ChimeMeetingsSDKService", "UpdateAttendeeCapabilities", {})
|
|
13
|
-
.n("ChimeSDKMeetingsClient", "UpdateAttendeeCapabilitiesCommand")
|
|
14
|
-
.sc(UpdateAttendeeCapabilities$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateAttendeeCapabilitiesCommand extends command(_ep0, _mw0, "UpdateAttendeeCapabilities", UpdateAttendeeCapabilities$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./ChimeSDKMeetingsClient";
|
|
2
2
|
export * from "./ChimeSDKMeetings";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./pagination";
|
|
6
7
|
export * from "./models/enums";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./ChimeSDKMeetingsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
2
|
import type { BatchCreateAttendeeRequest, BatchCreateAttendeeResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface BatchCreateAttendeeCommandInput extends BatchCreateAttendeeRequ
|
|
|
22
19
|
export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const BatchCreateAttendeeCommand_base: {
|
|
25
|
-
new (input: BatchCreateAttendeeCommandInput): import("@smithy/core/client").CommandImpl<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: BatchCreateAttendeeCommandInput): import("@smithy/core/client").CommandImpl<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: BatchCreateAttendeeCommandInput): import("@smithy/core/client").CommandImpl<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput, import("..").ChimeSDKMeetingsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: BatchCreateAttendeeCommandInput): import("@smithy/core/client").CommandImpl<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput, import("..").ChimeSDKMeetingsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see
|