@aws-sdk/client-chime-sdk-meetings 3.289.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BatchCreateAttendeeCommand.d.ts +28 -0
- package/dist-types/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.d.ts +19 -0
- package/dist-types/commands/CreateAttendeeCommand.d.ts +28 -0
- package/dist-types/commands/CreateMeetingCommand.d.ts +22 -0
- package/dist-types/commands/CreateMeetingWithAttendeesCommand.d.ts +22 -0
- package/dist-types/commands/DeleteAttendeeCommand.d.ts +22 -0
- package/dist-types/commands/DeleteMeetingCommand.d.ts +22 -0
- package/dist-types/commands/GetAttendeeCommand.d.ts +22 -0
- package/dist-types/commands/GetMeetingCommand.d.ts +22 -0
- package/dist-types/commands/ListAttendeesCommand.d.ts +22 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -0
- package/dist-types/commands/StartMeetingTranscriptionCommand.d.ts +28 -0
- package/dist-types/commands/StopMeetingTranscriptionCommand.d.ts +25 -0
- package/dist-types/commands/TagResourceCommand.d.ts +10 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +7 -0
- package/dist-types/commands/UpdateAttendeeCapabilitiesCommand.d.ts +19 -0
- package/package.json +29 -29
|
@@ -30,6 +30,34 @@ export interface BatchCreateAttendeeCommandOutput extends BatchCreateAttendeeRes
|
|
|
30
30
|
* @see {@link BatchCreateAttendeeCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequestException} (client fault)
|
|
34
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
37
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
40
|
+
* <p>The request exceeds the resource limit.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
46
|
+
* <p>The service encountered an unexpected error.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The service is currently unavailable.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
55
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link UnprocessableEntityException} (client fault)
|
|
58
|
+
* <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
33
61
|
*/
|
|
34
62
|
export declare class BatchCreateAttendeeCommand extends $Command<BatchCreateAttendeeCommandInput, BatchCreateAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
35
63
|
readonly input: BatchCreateAttendeeCommandInput;
|
|
@@ -49,6 +49,25 @@ export interface BatchUpdateAttendeeCapabilitiesExceptCommandOutput extends __Me
|
|
|
49
49
|
* @see {@link BatchUpdateAttendeeCapabilitiesExceptCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link BadRequestException} (client fault)
|
|
53
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>Multiple instances of the same request have been made simultaneously.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
59
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link NotFoundException} (client fault)
|
|
62
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
65
|
+
* <p>The service is currently unavailable.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
68
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
69
|
+
*
|
|
70
|
+
*
|
|
52
71
|
*/
|
|
53
72
|
export declare class BatchUpdateAttendeeCapabilitiesExceptCommand extends $Command<BatchUpdateAttendeeCapabilitiesExceptCommandInput, BatchUpdateAttendeeCapabilitiesExceptCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
54
73
|
readonly input: BatchUpdateAttendeeCapabilitiesExceptCommandInput;
|
|
@@ -34,6 +34,34 @@ export interface CreateAttendeeCommandOutput extends CreateAttendeeResponse, __M
|
|
|
34
34
|
* @see {@link CreateAttendeeCommandOutput} for command's `response` shape.
|
|
35
35
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
36
36
|
*
|
|
37
|
+
* @throws {@link BadRequestException} (client fault)
|
|
38
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
41
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
44
|
+
* <p>The request exceeds the resource limit.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
50
|
+
* <p>The service encountered an unexpected error.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
|
+
* <p>The service is currently unavailable.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
56
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
59
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link UnprocessableEntityException} (client fault)
|
|
62
|
+
* <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
37
65
|
*/
|
|
38
66
|
export declare class CreateAttendeeCommand extends $Command<CreateAttendeeCommandInput, CreateAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
39
67
|
readonly input: CreateAttendeeCommandInput;
|
|
@@ -35,6 +35,28 @@ export interface CreateMeetingCommandOutput extends CreateMeetingResponse, __Met
|
|
|
35
35
|
* @see {@link CreateMeetingCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
42
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>The request exceeds the resource limit.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
48
|
+
* <p>The service encountered an unexpected error.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The service is currently unavailable.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
57
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
38
60
|
*/
|
|
39
61
|
export declare class CreateMeetingCommand extends $Command<CreateMeetingCommandInput, CreateMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
40
62
|
readonly input: CreateMeetingCommandInput;
|
|
@@ -35,6 +35,28 @@ export interface CreateMeetingWithAttendeesCommandOutput extends CreateMeetingWi
|
|
|
35
35
|
* @see {@link CreateMeetingWithAttendeesCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
42
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>The request exceeds the resource limit.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
48
|
+
* <p>The service encountered an unexpected error.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The service is currently unavailable.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
57
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
38
60
|
*/
|
|
39
61
|
export declare class CreateMeetingWithAttendeesCommand extends $Command<CreateMeetingWithAttendeesCommandInput, CreateMeetingWithAttendeesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
40
62
|
readonly input: CreateMeetingWithAttendeesCommandInput;
|
|
@@ -32,6 +32,28 @@ export interface DeleteAttendeeCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link DeleteAttendeeCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
39
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link NotFoundException} (client fault)
|
|
42
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
45
|
+
* <p>The service encountered an unexpected error.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is currently unavailable.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
54
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
35
57
|
*/
|
|
36
58
|
export declare class DeleteAttendeeCommand extends $Command<DeleteAttendeeCommandInput, DeleteAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
37
59
|
readonly input: DeleteAttendeeCommandInput;
|
|
@@ -32,6 +32,28 @@ export interface DeleteMeetingCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* @see {@link DeleteMeetingCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link BadRequestException} (client fault)
|
|
36
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
39
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link NotFoundException} (client fault)
|
|
42
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
45
|
+
* <p>The service encountered an unexpected error.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
48
|
+
* <p>The service is currently unavailable.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
54
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
35
57
|
*/
|
|
36
58
|
export declare class DeleteMeetingCommand extends $Command<DeleteMeetingCommandInput, DeleteMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
37
59
|
readonly input: DeleteMeetingCommandInput;
|
|
@@ -33,6 +33,28 @@ export interface GetAttendeeCommandOutput extends GetAttendeeResponse, __Metadat
|
|
|
33
33
|
* @see {@link GetAttendeeCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link BadRequestException} (client fault)
|
|
37
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
40
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
46
|
+
* <p>The service encountered an unexpected error.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The service is currently unavailable.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
55
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
36
58
|
*/
|
|
37
59
|
export declare class GetAttendeeCommand extends $Command<GetAttendeeCommandInput, GetAttendeeCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
38
60
|
readonly input: GetAttendeeCommandInput;
|
|
@@ -31,6 +31,28 @@ export interface GetMeetingCommandOutput extends GetMeetingResponse, __MetadataB
|
|
|
31
31
|
* @see {@link GetMeetingCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequestException} (client fault)
|
|
35
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
38
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotFoundException} (client fault)
|
|
41
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
44
|
+
* <p>The service encountered an unexpected error.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
47
|
+
* <p>The service is currently unavailable.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
53
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
34
56
|
*/
|
|
35
57
|
export declare class GetMeetingCommand extends $Command<GetMeetingCommandInput, GetMeetingCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
36
58
|
readonly input: GetMeetingCommandInput;
|
|
@@ -33,6 +33,28 @@ export interface ListAttendeesCommandOutput extends ListAttendeesResponse, __Met
|
|
|
33
33
|
* @see {@link ListAttendeesCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link BadRequestException} (client fault)
|
|
37
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
40
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link NotFoundException} (client fault)
|
|
43
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
46
|
+
* <p>The service encountered an unexpected error.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
49
|
+
* <p>The service is currently unavailable.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
52
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
55
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
36
58
|
*/
|
|
37
59
|
export declare class ListAttendeesCommand extends $Command<ListAttendeesCommandInput, ListAttendeesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
38
60
|
readonly input: ListAttendeesCommandInput;
|
|
@@ -29,6 +29,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
33
|
+
* <p>The resource that you want to tag couldn't be found.</p>
|
|
34
|
+
*
|
|
35
|
+
*
|
|
32
36
|
*/
|
|
33
37
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
34
38
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -35,6 +35,34 @@ export interface StartMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
35
35
|
* @see {@link StartMeetingTranscriptionCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
42
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>The request exceeds the resource limit.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
51
|
+
* <p>The service encountered an unexpected error.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
|
+
* <p>The service is currently unavailable.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
57
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
60
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link UnprocessableEntityException} (client fault)
|
|
63
|
+
* <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
38
66
|
*/
|
|
39
67
|
export declare class StartMeetingTranscriptionCommand extends $Command<StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
40
68
|
readonly input: StartMeetingTranscriptionCommandInput;
|
|
@@ -35,6 +35,31 @@ export interface StopMeetingTranscriptionCommandOutput extends __MetadataBearer
|
|
|
35
35
|
* @see {@link StopMeetingTranscriptionCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequestException} (client fault)
|
|
39
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
42
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceFailureException} (server fault)
|
|
48
|
+
* <p>The service encountered an unexpected error.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
51
|
+
* <p>The service is currently unavailable.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>The number of customer requests exceeds the request rate limit.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
57
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link UnprocessableEntityException} (client fault)
|
|
60
|
+
* <p>The request was well-formed but was unable to be followed due to semantic errors.</p>
|
|
61
|
+
*
|
|
62
|
+
*
|
|
38
63
|
*/
|
|
39
64
|
export declare class StopMeetingTranscriptionCommand extends $Command<StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
40
65
|
readonly input: StopMeetingTranscriptionCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequestException} (client fault)
|
|
33
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
36
|
+
* <p>The resource that you want to tag couldn't be found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link TooManyTagsException} (client fault)
|
|
39
|
+
* <p>Too many tags were added to the specified resource.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
34
44
|
readonly input: TagResourceCommandInput;
|
|
@@ -50,6 +50,13 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
50
50
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
51
51
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
52
52
|
*
|
|
53
|
+
* @throws {@link BadRequestException} (client fault)
|
|
54
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
|
+
* <p>The resource that you want to tag couldn't be found.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
53
60
|
*/
|
|
54
61
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
55
62
|
readonly input: UntagResourceCommandInput;
|
|
@@ -49,6 +49,25 @@ export interface UpdateAttendeeCapabilitiesCommandOutput extends UpdateAttendeeC
|
|
|
49
49
|
* @see {@link UpdateAttendeeCapabilitiesCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link BadRequestException} (client fault)
|
|
53
|
+
* <p>The input parameters don't match the service's restrictions.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ConflictException} (client fault)
|
|
56
|
+
* <p>Multiple instances of the same request have been made simultaneously.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
59
|
+
* <p>The client is permanently forbidden from making the request.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link NotFoundException} (client fault)
|
|
62
|
+
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
65
|
+
* <p>The service is currently unavailable.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
68
|
+
* <p>The user isn't authorized to request a resource.</p>
|
|
69
|
+
*
|
|
70
|
+
*
|
|
52
71
|
*/
|
|
53
72
|
export declare class UpdateAttendeeCapabilitiesCommand extends $Command<UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
54
73
|
readonly input: UpdateAttendeeCapabilitiesCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-meetings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|