@aws-sdk/client-chime-sdk-meetings 3.52.0 → 3.54.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/README.md +1 -2
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ChimeSDKMeetingsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +115 -1
- package/dist-cjs/protocols/Aws_restJson1.js +145 -458
- package/dist-es/index.js +1 -0
- package/dist-es/models/ChimeSDKMeetingsServiceException.js +12 -0
- package/dist-es/models/models_0.js +108 -1
- package/dist-es/protocols/Aws_restJson1.js +268 -514
- package/dist-types/ChimeSDKMeetings.d.ts +1 -2
- package/dist-types/ChimeSDKMeetingsClient.d.ts +3 -4
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ChimeSDKMeetingsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -65
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ChimeSDKMeetingsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +44 -23
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.54.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.0...v3.54.1) (2022-03-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-chime-sdk-meetings
|
package/README.md
CHANGED
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
AWS SDK for JavaScript ChimeSDKMeetings Client for Node.js, Browser and React Native.
|
|
9
9
|
|
|
10
10
|
<p>The Amazon Chime SDK meetings APIs in this section allow software developers to create Amazon Chime SDK meetings, set the AWS Regions for meetings, create and manage users, and send and
|
|
11
|
-
receive meeting notifications. For more information
|
|
12
|
-
about the meeting APIs, see <a href="http://amazonaws.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_meetings">Amazon Chime SDK meetings</a>.</p>
|
|
11
|
+
receive meeting notifications. For more information about the meeting APIs, see <a href="https://docs.aws.amazon.com/chime/latest/APIReference/API_Operations_Amazon_Chime_SDK_Meetings.html">Amazon Chime SDK meetings</a>.</p>
|
|
13
12
|
|
|
14
13
|
## Installing
|
|
15
14
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ChimeSDKMeetingsServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./ChimeSDKMeetings"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./ChimeSDKMeetingsClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var ChimeSDKMeetingsServiceException_1 = require("./models/ChimeSDKMeetingsServiceException");
|
|
11
|
+
Object.defineProperty(exports, "ChimeSDKMeetingsServiceException", { enumerable: true, get: function () { return ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ChimeSDKMeetingsServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class ChimeSDKMeetingsServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, ChimeSDKMeetingsServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.ChimeSDKMeetingsServiceException = ChimeSDKMeetingsServiceException;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StopMeetingTranscriptionRequest = exports.StartMeetingTranscriptionRequest = exports.TranscriptionConfiguration = exports.EngineTranscribeSettings = exports.TranscribeVocabularyFilterMethod = exports.TranscribeRegion = exports.TranscribePartialResultsStability = exports.TranscribeLanguageCode = exports.TranscribeContentRedactionType = exports.TranscribeContentIdentificationType = exports.EngineTranscribeMedicalSettings = exports.TranscribeMedicalType = exports.TranscribeMedicalSpecialty = exports.TranscribeMedicalRegion = exports.TranscribeMedicalLanguageCode = exports.TranscribeMedicalContentIdentificationType = exports.ListAttendeesResponse = exports.ListAttendeesRequest = exports.GetMeetingResponse = exports.GetMeetingRequest = exports.GetAttendeeResponse = exports.GetAttendeeRequest = exports.DeleteMeetingRequest = exports.DeleteAttendeeRequest = exports.CreateMeetingWithAttendeesResponse = exports.CreateMeetingWithAttendeesRequest = exports.CreateMeetingResponse = exports.Meeting = exports.MediaPlacement = exports.CreateMeetingRequest = exports.NotificationsConfiguration = exports.MeetingFeaturesConfiguration = exports.CreateAttendeeResponse = exports.CreateAttendeeRequest = exports.BatchCreateAttendeeResponse = exports.CreateAttendeeError = exports.BatchCreateAttendeeRequest = exports.CreateAttendeeRequestItem = exports.AudioFeatures = exports.MeetingFeatureStatus = exports.Attendee = void 0;
|
|
3
|
+
exports.StopMeetingTranscriptionRequest = exports.StartMeetingTranscriptionRequest = exports.TranscriptionConfiguration = exports.EngineTranscribeSettings = exports.TranscribeVocabularyFilterMethod = exports.TranscribeRegion = exports.TranscribePartialResultsStability = exports.TranscribeLanguageCode = exports.TranscribeContentRedactionType = exports.TranscribeContentIdentificationType = exports.EngineTranscribeMedicalSettings = exports.TranscribeMedicalType = exports.TranscribeMedicalSpecialty = exports.TranscribeMedicalRegion = exports.TranscribeMedicalLanguageCode = exports.TranscribeMedicalContentIdentificationType = exports.ListAttendeesResponse = exports.ListAttendeesRequest = exports.GetMeetingResponse = exports.GetMeetingRequest = exports.GetAttendeeResponse = exports.GetAttendeeRequest = exports.DeleteMeetingRequest = exports.DeleteAttendeeRequest = exports.CreateMeetingWithAttendeesResponse = exports.CreateMeetingWithAttendeesRequest = exports.CreateMeetingResponse = exports.Meeting = exports.MediaPlacement = exports.CreateMeetingRequest = exports.NotificationsConfiguration = exports.MeetingFeaturesConfiguration = exports.UnprocessableEntityException = exports.CreateAttendeeResponse = exports.CreateAttendeeRequest = exports.UnauthorizedException = exports.ServiceUnavailableException = exports.NotFoundException = exports.LimitExceededException = exports.ForbiddenException = exports.BatchCreateAttendeeResponse = exports.CreateAttendeeError = exports.BatchCreateAttendeeRequest = exports.CreateAttendeeRequestItem = exports.BadRequestException = exports.AudioFeatures = exports.MeetingFeatureStatus = exports.Attendee = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
const ChimeSDKMeetingsServiceException_1 = require("./ChimeSDKMeetingsServiceException");
|
|
5
6
|
var Attendee;
|
|
6
7
|
(function (Attendee) {
|
|
7
8
|
Attendee.filterSensitiveLog = (obj) => ({
|
|
@@ -21,6 +22,22 @@ var AudioFeatures;
|
|
|
21
22
|
...obj,
|
|
22
23
|
});
|
|
23
24
|
})(AudioFeatures = exports.AudioFeatures || (exports.AudioFeatures = {}));
|
|
25
|
+
class BadRequestException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
26
|
+
constructor(opts) {
|
|
27
|
+
super({
|
|
28
|
+
name: "BadRequestException",
|
|
29
|
+
$fault: "client",
|
|
30
|
+
...opts,
|
|
31
|
+
});
|
|
32
|
+
this.name = "BadRequestException";
|
|
33
|
+
this.$fault = "client";
|
|
34
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
35
|
+
this.Code = opts.Code;
|
|
36
|
+
this.Message = opts.Message;
|
|
37
|
+
this.RequestId = opts.RequestId;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
exports.BadRequestException = BadRequestException;
|
|
24
41
|
var CreateAttendeeRequestItem;
|
|
25
42
|
(function (CreateAttendeeRequestItem) {
|
|
26
43
|
CreateAttendeeRequestItem.filterSensitiveLog = (obj) => ({
|
|
@@ -52,6 +69,87 @@ var BatchCreateAttendeeResponse;
|
|
|
52
69
|
...(obj.Errors && { Errors: obj.Errors.map((item) => CreateAttendeeError.filterSensitiveLog(item)) }),
|
|
53
70
|
});
|
|
54
71
|
})(BatchCreateAttendeeResponse = exports.BatchCreateAttendeeResponse || (exports.BatchCreateAttendeeResponse = {}));
|
|
72
|
+
class ForbiddenException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
73
|
+
constructor(opts) {
|
|
74
|
+
super({
|
|
75
|
+
name: "ForbiddenException",
|
|
76
|
+
$fault: "client",
|
|
77
|
+
...opts,
|
|
78
|
+
});
|
|
79
|
+
this.name = "ForbiddenException";
|
|
80
|
+
this.$fault = "client";
|
|
81
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
82
|
+
this.Code = opts.Code;
|
|
83
|
+
this.Message = opts.Message;
|
|
84
|
+
this.RequestId = opts.RequestId;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
exports.ForbiddenException = ForbiddenException;
|
|
88
|
+
class LimitExceededException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "LimitExceededException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
this.name = "LimitExceededException";
|
|
96
|
+
this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
98
|
+
this.Code = opts.Code;
|
|
99
|
+
this.Message = opts.Message;
|
|
100
|
+
this.RequestId = opts.RequestId;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.LimitExceededException = LimitExceededException;
|
|
104
|
+
class NotFoundException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
105
|
+
constructor(opts) {
|
|
106
|
+
super({
|
|
107
|
+
name: "NotFoundException",
|
|
108
|
+
$fault: "client",
|
|
109
|
+
...opts,
|
|
110
|
+
});
|
|
111
|
+
this.name = "NotFoundException";
|
|
112
|
+
this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
114
|
+
this.Code = opts.Code;
|
|
115
|
+
this.Message = opts.Message;
|
|
116
|
+
this.RequestId = opts.RequestId;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
exports.NotFoundException = NotFoundException;
|
|
120
|
+
class ServiceUnavailableException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
121
|
+
constructor(opts) {
|
|
122
|
+
super({
|
|
123
|
+
name: "ServiceUnavailableException",
|
|
124
|
+
$fault: "server",
|
|
125
|
+
...opts,
|
|
126
|
+
});
|
|
127
|
+
this.name = "ServiceUnavailableException";
|
|
128
|
+
this.$fault = "server";
|
|
129
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
130
|
+
this.Code = opts.Code;
|
|
131
|
+
this.Message = opts.Message;
|
|
132
|
+
this.RequestId = opts.RequestId;
|
|
133
|
+
this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
137
|
+
class UnauthorizedException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "UnauthorizedException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
this.name = "UnauthorizedException";
|
|
145
|
+
this.$fault = "client";
|
|
146
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
147
|
+
this.Code = opts.Code;
|
|
148
|
+
this.Message = opts.Message;
|
|
149
|
+
this.RequestId = opts.RequestId;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
55
153
|
var CreateAttendeeRequest;
|
|
56
154
|
(function (CreateAttendeeRequest) {
|
|
57
155
|
CreateAttendeeRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -66,6 +164,22 @@ var CreateAttendeeResponse;
|
|
|
66
164
|
...(obj.Attendee && { Attendee: Attendee.filterSensitiveLog(obj.Attendee) }),
|
|
67
165
|
});
|
|
68
166
|
})(CreateAttendeeResponse = exports.CreateAttendeeResponse || (exports.CreateAttendeeResponse = {}));
|
|
167
|
+
class UnprocessableEntityException extends ChimeSDKMeetingsServiceException_1.ChimeSDKMeetingsServiceException {
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "UnprocessableEntityException",
|
|
171
|
+
$fault: "client",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
this.name = "UnprocessableEntityException";
|
|
175
|
+
this.$fault = "client";
|
|
176
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
177
|
+
this.Code = opts.Code;
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
this.RequestId = opts.RequestId;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
69
183
|
var MeetingFeaturesConfiguration;
|
|
70
184
|
(function (MeetingFeaturesConfiguration) {
|
|
71
185
|
MeetingFeaturesConfiguration.filterSensitiveLog = (obj) => ({
|