@aws-sdk/client-chime-sdk-meetings 3.141.0 → 3.145.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/CHANGELOG.md +30 -0
- package/dist-cjs/ChimeSDKMeetings.js +45 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +36 -0
- package/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +64 -2
- package/dist-cjs/protocols/Aws_restJson1.js +452 -382
- package/dist-es/ChimeSDKMeetings.js +45 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
- package/dist-es/commands/TagResourceCommand.js +39 -0
- package/dist-es/commands/UntagResourceCommand.js +39 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +39 -0
- package/dist-es/protocols/Aws_restJson1.js +575 -394
- package/dist-types/ChimeSDKMeetings.d.ts +46 -0
- package/dist-types/ChimeSDKMeetingsClient.d.ts +5 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +35 -0
- package/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +60 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +181 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/ChimeSDKMeetings.d.ts +15 -0
- package/dist-types/ts3.4/ChimeSDKMeetingsClient.d.ts +5 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +80 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +9 -0
- package/package.json +11 -6
|
@@ -10,8 +10,11 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./command
|
|
|
10
10
|
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
|
|
11
11
|
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
|
|
12
12
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
13
14
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
14
15
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
16
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
15
18
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
16
19
|
/**
|
|
17
20
|
* <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
|
|
@@ -134,6 +137,12 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
134
137
|
listAttendees(args: ListAttendeesCommandInput, options?: __HttpHandlerOptions): Promise<ListAttendeesCommandOutput>;
|
|
135
138
|
listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
136
139
|
listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
140
|
+
/**
|
|
141
|
+
* <p>Returns a list of the tags available for the specified resource.</p>
|
|
142
|
+
*/
|
|
143
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
144
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
145
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
137
146
|
/**
|
|
138
147
|
* <p>Starts transcription for the specified <code>meetingId</code>.</p>
|
|
139
148
|
*/
|
|
@@ -146,6 +155,43 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
146
155
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StopMeetingTranscriptionCommandOutput>;
|
|
147
156
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
148
157
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
158
|
+
/**
|
|
159
|
+
* <p>The resource that supports tags.</p>
|
|
160
|
+
*/
|
|
161
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
162
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
163
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
164
|
+
/**
|
|
165
|
+
* <p>Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you
|
|
166
|
+
* attempt to remove tags from a resource that were already removed. Note the following:</p>
|
|
167
|
+
* <ul>
|
|
168
|
+
* <li>
|
|
169
|
+
* <p>To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information,
|
|
170
|
+
* see the documentation for the service whose resource you want to untag.</p>
|
|
171
|
+
* </li>
|
|
172
|
+
* <li>
|
|
173
|
+
* <p>You can only tag resources that are located in the specified AWS Region for the calling AWS account.</p>
|
|
174
|
+
* </li>
|
|
175
|
+
* </ul>
|
|
176
|
+
*
|
|
177
|
+
* <p>
|
|
178
|
+
* <b>Minimum permissions</b>
|
|
179
|
+
* </p>
|
|
180
|
+
*
|
|
181
|
+
* <p>In addition to the <code>tag:UntagResources</code> permission required by this operation, you must also have the remove tags permission defined by the service that created the resource.
|
|
182
|
+
* For example, to remove the tags from an Amazon EC2 instance using the <code>UntagResources</code> operation, you must have both of the following permissions:</p>
|
|
183
|
+
*
|
|
184
|
+
* <p>
|
|
185
|
+
* <code>tag:UntagResource</code>
|
|
186
|
+
* </p>
|
|
187
|
+
*
|
|
188
|
+
* <p>
|
|
189
|
+
* <code>ChimeSDKMeetings:DeleteTags</code>
|
|
190
|
+
* </p>
|
|
191
|
+
*/
|
|
192
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
193
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
194
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
149
195
|
/**
|
|
150
196
|
* <p>The capabilties that you want to update.</p>
|
|
151
197
|
* <note>
|
|
@@ -16,11 +16,14 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./command
|
|
|
16
16
|
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
|
|
17
17
|
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
|
|
18
18
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
19
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
19
20
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
20
21
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
22
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
23
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
24
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
22
|
-
export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | UpdateAttendeeCapabilitiesCommandInput;
|
|
23
|
-
export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
|
|
25
|
+
export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | ListTagsForResourceCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAttendeeCapabilitiesCommandInput;
|
|
26
|
+
export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | ListTagsForResourceCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
|
|
24
27
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
25
28
|
/**
|
|
26
29
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns a list of the tags available for the specified resource.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { ChimeSDKMeetingsClient, ListTagsForResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
15
|
+
* // const { ChimeSDKMeetingsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
16
|
+
* const client = new ChimeSDKMeetingsClient(config);
|
|
17
|
+
* const command = new ListTagsForResourceCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>The resource that supports tags.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { ChimeSDKMeetingsClient, TagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
15
|
+
* // const { ChimeSDKMeetingsClient, TagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
16
|
+
* const client = new ChimeSDKMeetingsClient(config);
|
|
17
|
+
* const command = new TagResourceCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
27
|
+
readonly input: TagResourceCommandInput;
|
|
28
|
+
constructor(input: TagResourceCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you
|
|
11
|
+
* attempt to remove tags from a resource that were already removed. Note the following:</p>
|
|
12
|
+
* <ul>
|
|
13
|
+
* <li>
|
|
14
|
+
* <p>To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information,
|
|
15
|
+
* see the documentation for the service whose resource you want to untag.</p>
|
|
16
|
+
* </li>
|
|
17
|
+
* <li>
|
|
18
|
+
* <p>You can only tag resources that are located in the specified AWS Region for the calling AWS account.</p>
|
|
19
|
+
* </li>
|
|
20
|
+
* </ul>
|
|
21
|
+
*
|
|
22
|
+
* <p>
|
|
23
|
+
* <b>Minimum permissions</b>
|
|
24
|
+
* </p>
|
|
25
|
+
*
|
|
26
|
+
* <p>In addition to the <code>tag:UntagResources</code> permission required by this operation, you must also have the remove tags permission defined by the service that created the resource.
|
|
27
|
+
* For example, to remove the tags from an Amazon EC2 instance using the <code>UntagResources</code> operation, you must have both of the following permissions:</p>
|
|
28
|
+
*
|
|
29
|
+
* <p>
|
|
30
|
+
* <code>tag:UntagResource</code>
|
|
31
|
+
* </p>
|
|
32
|
+
*
|
|
33
|
+
* <p>
|
|
34
|
+
* <code>ChimeSDKMeetings:DeleteTags</code>
|
|
35
|
+
* </p>
|
|
36
|
+
* @example
|
|
37
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
38
|
+
* ```javascript
|
|
39
|
+
* import { ChimeSDKMeetingsClient, UntagResourceCommand } from "@aws-sdk/client-chime-sdk-meetings"; // ES Modules import
|
|
40
|
+
* // const { ChimeSDKMeetingsClient, UntagResourceCommand } = require("@aws-sdk/client-chime-sdk-meetings"); // CommonJS import
|
|
41
|
+
* const client = new ChimeSDKMeetingsClient(config);
|
|
42
|
+
* const command = new UntagResourceCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
47
|
+
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
48
|
+
* @see {@link ChimeSDKMeetingsClientResolvedConfig | config} for ChimeSDKMeetingsClient's `config` shape.
|
|
49
|
+
*
|
|
50
|
+
*/
|
|
51
|
+
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
52
|
+
readonly input: UntagResourceCommandInput;
|
|
53
|
+
constructor(input: UntagResourceCommandInput);
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
*/
|
|
57
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
58
|
+
private serialize;
|
|
59
|
+
private deserialize;
|
|
60
|
+
}
|
|
@@ -8,6 +8,9 @@ export * from "./DeleteMeetingCommand";
|
|
|
8
8
|
export * from "./GetAttendeeCommand";
|
|
9
9
|
export * from "./GetMeetingCommand";
|
|
10
10
|
export * from "./ListAttendeesCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
11
12
|
export * from "./StartMeetingTranscriptionCommand";
|
|
12
13
|
export * from "./StopMeetingTranscriptionCommand";
|
|
14
|
+
export * from "./TagResourceCommand";
|
|
15
|
+
export * from "./UntagResourceCommand";
|
|
13
16
|
export * from "./UpdateAttendeeCapabilitiesCommand";
|
|
@@ -246,6 +246,9 @@ export declare class ServiceFailureException extends __BaseException {
|
|
|
246
246
|
readonly $fault: "server";
|
|
247
247
|
Code?: string;
|
|
248
248
|
Message?: string;
|
|
249
|
+
/**
|
|
250
|
+
* <p>The ID of the failed request.</p>
|
|
251
|
+
*/
|
|
249
252
|
RequestId?: string;
|
|
250
253
|
/**
|
|
251
254
|
* @internal
|
|
@@ -281,6 +284,9 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
281
284
|
readonly $fault: "client";
|
|
282
285
|
Code?: string;
|
|
283
286
|
Message?: string;
|
|
287
|
+
/**
|
|
288
|
+
* <p>The ID of the request that exceeded the throttling limit.</p>
|
|
289
|
+
*/
|
|
284
290
|
RequestId?: string;
|
|
285
291
|
/**
|
|
286
292
|
* @internal
|
|
@@ -343,6 +349,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
343
349
|
readonly $fault: "client";
|
|
344
350
|
Code?: string;
|
|
345
351
|
Message?: string;
|
|
352
|
+
/**
|
|
353
|
+
* <p>The ID of the request involved in the conflict.</p>
|
|
354
|
+
*/
|
|
346
355
|
RequestId?: string;
|
|
347
356
|
/**
|
|
348
357
|
* @internal
|
|
@@ -418,6 +427,19 @@ export interface NotificationsConfiguration {
|
|
|
418
427
|
*/
|
|
419
428
|
SqsQueueArn?: string;
|
|
420
429
|
}
|
|
430
|
+
/**
|
|
431
|
+
* <p>A key-value pair that you define.</p>
|
|
432
|
+
*/
|
|
433
|
+
export interface Tag {
|
|
434
|
+
/**
|
|
435
|
+
* <p>The tag's key.</p>
|
|
436
|
+
*/
|
|
437
|
+
Key: string | undefined;
|
|
438
|
+
/**
|
|
439
|
+
* <p>The tag's value.</p>
|
|
440
|
+
*/
|
|
441
|
+
Value: string | undefined;
|
|
442
|
+
}
|
|
421
443
|
export interface CreateMeetingRequest {
|
|
422
444
|
/**
|
|
423
445
|
* <p>The unique identifier for the client request. Use a different token for different meetings.</p>
|
|
@@ -474,6 +496,51 @@ export interface CreateMeetingRequest {
|
|
|
474
496
|
* <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
|
|
475
497
|
*/
|
|
476
498
|
TenantIds?: string[];
|
|
499
|
+
/**
|
|
500
|
+
* <p>Applies one or more tags to an Amazon Chime SDK meeting. Note the following:</p>
|
|
501
|
+
* <ul>
|
|
502
|
+
* <li>
|
|
503
|
+
* <p>Not all resources have tags. For a list of services with resources that support tagging using this operation, see
|
|
504
|
+
* <a href="https://docs.aws.amazon.com/resourcegroupstagging/latest/APIReference/supported-services.html">Services that support the Resource Groups Tagging API</a>. If the resource
|
|
505
|
+
* doesn't yet support this operation, the resource's service might support tagging using its own API operations. For more information, refer to the documentation for that service.</p>
|
|
506
|
+
* </li>
|
|
507
|
+
* <li>
|
|
508
|
+
* <p>Each resource can have up to 50 tags. For other limits, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html#tag-conventions">Tag Naming and Usage Conventions</a> in the
|
|
509
|
+
* <i>AWS General Reference</i>.</p>
|
|
510
|
+
* </li>
|
|
511
|
+
* <li>
|
|
512
|
+
* <p>You can only tag resources that are located in the specified AWS Region for the AWS account.</p>
|
|
513
|
+
* </li>
|
|
514
|
+
* <li>
|
|
515
|
+
* <p>To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the
|
|
516
|
+
* documentation for each service.</p>
|
|
517
|
+
* </li>
|
|
518
|
+
* </ul>
|
|
519
|
+
* <important>
|
|
520
|
+
* <p>Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be
|
|
521
|
+
* used for private or sensitive data.</p>
|
|
522
|
+
* </important>
|
|
523
|
+
* <p>
|
|
524
|
+
* <b>Minimum permissions</b>
|
|
525
|
+
* </p>
|
|
526
|
+
*
|
|
527
|
+
* <p> In addition to the <code>tag:TagResources </code>permission required by this operation, you must also have the tagging permission defined by the service that created the resource. For example,
|
|
528
|
+
* to tag a <code>ChimeSDKMeetings</code> instance using the <code>TagResources</code> operation, you must have both of the following permissions:</p>
|
|
529
|
+
*
|
|
530
|
+
* <p>
|
|
531
|
+
* <code>tag:TagResources</code>
|
|
532
|
+
* </p>
|
|
533
|
+
*
|
|
534
|
+
* <p>
|
|
535
|
+
* <code>ChimeSDKMeetings:CreateTags</code>
|
|
536
|
+
* </p>
|
|
537
|
+
*
|
|
538
|
+
* <note>
|
|
539
|
+
* <p>Some services might have specific requirements for tagging some resources. For example, to tag an Amazon S3 bucket, you must also have the <code>s3:GetBucketTagging</code> permission.
|
|
540
|
+
* If the expected minimum permissions don't work, check the documentation for that service's tagging APIs for more information.</p>
|
|
541
|
+
* </note>
|
|
542
|
+
*/
|
|
543
|
+
Tags?: Tag[];
|
|
477
544
|
}
|
|
478
545
|
/**
|
|
479
546
|
* <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
|
|
@@ -554,6 +621,10 @@ export interface Meeting {
|
|
|
554
621
|
* <p>Array of strings.</p>
|
|
555
622
|
*/
|
|
556
623
|
TenantIds?: string[];
|
|
624
|
+
/**
|
|
625
|
+
* <p>The ARN of the meeting.</p>
|
|
626
|
+
*/
|
|
627
|
+
MeetingArn?: string;
|
|
557
628
|
}
|
|
558
629
|
export interface CreateMeetingResponse {
|
|
559
630
|
/**
|
|
@@ -622,6 +693,10 @@ export interface CreateMeetingWithAttendeesRequest {
|
|
|
622
693
|
* <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
|
|
623
694
|
*/
|
|
624
695
|
TenantIds?: string[];
|
|
696
|
+
/**
|
|
697
|
+
* <p>The tags in the request.</p>
|
|
698
|
+
*/
|
|
699
|
+
Tags?: Tag[];
|
|
625
700
|
}
|
|
626
701
|
export interface CreateMeetingWithAttendeesResponse {
|
|
627
702
|
/**
|
|
@@ -706,6 +781,39 @@ export interface ListAttendeesResponse {
|
|
|
706
781
|
*/
|
|
707
782
|
NextToken?: string;
|
|
708
783
|
}
|
|
784
|
+
export interface ListTagsForResourceRequest {
|
|
785
|
+
/**
|
|
786
|
+
* <p>The ARN of the resource.</p>
|
|
787
|
+
*/
|
|
788
|
+
ResourceARN: string | undefined;
|
|
789
|
+
}
|
|
790
|
+
export interface ListTagsForResourceResponse {
|
|
791
|
+
/**
|
|
792
|
+
* <p>The tags requested for the specified resource.</p>
|
|
793
|
+
*/
|
|
794
|
+
Tags?: Tag[];
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* <p>The resource that you want to tag couldn't be found.</p>
|
|
798
|
+
*/
|
|
799
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
800
|
+
readonly name: "ResourceNotFoundException";
|
|
801
|
+
readonly $fault: "client";
|
|
802
|
+
Code?: string;
|
|
803
|
+
Message?: string;
|
|
804
|
+
/**
|
|
805
|
+
* <p>The ID of the resource that couldn't be found.</p>
|
|
806
|
+
*/
|
|
807
|
+
RequestId?: string;
|
|
808
|
+
/**
|
|
809
|
+
* <p>The name of the resource that couldn't be found.</p>
|
|
810
|
+
*/
|
|
811
|
+
ResourceName?: string;
|
|
812
|
+
/**
|
|
813
|
+
* @internal
|
|
814
|
+
*/
|
|
815
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
816
|
+
}
|
|
709
817
|
export declare enum TranscribeMedicalContentIdentificationType {
|
|
710
818
|
PHI = "PHI"
|
|
711
819
|
}
|
|
@@ -908,6 +1016,51 @@ export interface StopMeetingTranscriptionRequest {
|
|
|
908
1016
|
*/
|
|
909
1017
|
MeetingId: string | undefined;
|
|
910
1018
|
}
|
|
1019
|
+
export interface TagResourceRequest {
|
|
1020
|
+
/**
|
|
1021
|
+
* <p>The ARN of the resource.</p>
|
|
1022
|
+
*/
|
|
1023
|
+
ResourceARN: string | undefined;
|
|
1024
|
+
/**
|
|
1025
|
+
* <p>Lists the requested tags.</p>
|
|
1026
|
+
*/
|
|
1027
|
+
Tags: Tag[] | undefined;
|
|
1028
|
+
}
|
|
1029
|
+
export interface TagResourceResponse {
|
|
1030
|
+
}
|
|
1031
|
+
/**
|
|
1032
|
+
* <p>Too many tags were added to the specified resource.</p>
|
|
1033
|
+
*/
|
|
1034
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1035
|
+
readonly name: "TooManyTagsException";
|
|
1036
|
+
readonly $fault: "client";
|
|
1037
|
+
Code?: string;
|
|
1038
|
+
Message?: string;
|
|
1039
|
+
/**
|
|
1040
|
+
* <p>The ID of the request that contains too many tags.</p>
|
|
1041
|
+
*/
|
|
1042
|
+
RequestId?: string;
|
|
1043
|
+
/**
|
|
1044
|
+
* <p>The name of the resource that received too many tags.</p>
|
|
1045
|
+
*/
|
|
1046
|
+
ResourceName?: string;
|
|
1047
|
+
/**
|
|
1048
|
+
* @internal
|
|
1049
|
+
*/
|
|
1050
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1051
|
+
}
|
|
1052
|
+
export interface UntagResourceRequest {
|
|
1053
|
+
/**
|
|
1054
|
+
* <p>The ARN of the resource that you're removing tags from.</p>
|
|
1055
|
+
*/
|
|
1056
|
+
ResourceARN: string | undefined;
|
|
1057
|
+
/**
|
|
1058
|
+
* <p>The tag keys being removed from the resources.</p>
|
|
1059
|
+
*/
|
|
1060
|
+
TagKeys: string[] | undefined;
|
|
1061
|
+
}
|
|
1062
|
+
export interface UntagResourceResponse {
|
|
1063
|
+
}
|
|
911
1064
|
export interface UpdateAttendeeCapabilitiesRequest {
|
|
912
1065
|
/**
|
|
913
1066
|
* <p>The ID of the meeting associated with the update request.</p>
|
|
@@ -980,6 +1133,10 @@ export declare const MeetingFeaturesConfigurationFilterSensitiveLog: (obj: Meeti
|
|
|
980
1133
|
* @internal
|
|
981
1134
|
*/
|
|
982
1135
|
export declare const NotificationsConfigurationFilterSensitiveLog: (obj: NotificationsConfiguration) => any;
|
|
1136
|
+
/**
|
|
1137
|
+
* @internal
|
|
1138
|
+
*/
|
|
1139
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
983
1140
|
/**
|
|
984
1141
|
* @internal
|
|
985
1142
|
*/
|
|
@@ -1036,6 +1193,14 @@ export declare const ListAttendeesRequestFilterSensitiveLog: (obj: ListAttendees
|
|
|
1036
1193
|
* @internal
|
|
1037
1194
|
*/
|
|
1038
1195
|
export declare const ListAttendeesResponseFilterSensitiveLog: (obj: ListAttendeesResponse) => any;
|
|
1196
|
+
/**
|
|
1197
|
+
* @internal
|
|
1198
|
+
*/
|
|
1199
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1200
|
+
/**
|
|
1201
|
+
* @internal
|
|
1202
|
+
*/
|
|
1203
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1039
1204
|
/**
|
|
1040
1205
|
* @internal
|
|
1041
1206
|
*/
|
|
@@ -1056,6 +1221,22 @@ export declare const StartMeetingTranscriptionRequestFilterSensitiveLog: (obj: S
|
|
|
1056
1221
|
* @internal
|
|
1057
1222
|
*/
|
|
1058
1223
|
export declare const StopMeetingTranscriptionRequestFilterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
|
|
1224
|
+
/**
|
|
1225
|
+
* @internal
|
|
1226
|
+
*/
|
|
1227
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1228
|
+
/**
|
|
1229
|
+
* @internal
|
|
1230
|
+
*/
|
|
1231
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1232
|
+
/**
|
|
1233
|
+
* @internal
|
|
1234
|
+
*/
|
|
1235
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1236
|
+
/**
|
|
1237
|
+
* @internal
|
|
1238
|
+
*/
|
|
1239
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1059
1240
|
/**
|
|
1060
1241
|
* @internal
|
|
1061
1242
|
*/
|
|
@@ -10,8 +10,11 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "../comman
|
|
|
10
10
|
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "../commands/GetAttendeeCommand";
|
|
11
11
|
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "../commands/GetMeetingCommand";
|
|
12
12
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "../commands/ListAttendeesCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
13
14
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "../commands/StartMeetingTranscriptionCommand";
|
|
14
15
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "../commands/StopMeetingTranscriptionCommand";
|
|
16
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
15
18
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "../commands/UpdateAttendeeCapabilitiesCommand";
|
|
16
19
|
export declare const serializeAws_restJson1BatchCreateAttendeeCommand: (input: BatchCreateAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
20
|
export declare const serializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (input: BatchUpdateAttendeeCapabilitiesExceptCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -23,8 +26,11 @@ export declare const serializeAws_restJson1DeleteMeetingCommand: (input: DeleteM
|
|
|
23
26
|
export declare const serializeAws_restJson1GetAttendeeCommand: (input: GetAttendeeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
27
|
export declare const serializeAws_restJson1GetMeetingCommand: (input: GetMeetingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
28
|
export declare const serializeAws_restJson1ListAttendeesCommand: (input: ListAttendeesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
30
|
export declare const serializeAws_restJson1StartMeetingTranscriptionCommand: (input: StartMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
31
|
export declare const serializeAws_restJson1StopMeetingTranscriptionCommand: (input: StopMeetingTranscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
34
|
export declare const serializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (input: UpdateAttendeeCapabilitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
35
|
export declare const deserializeAws_restJson1BatchCreateAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCreateAttendeeCommandOutput>;
|
|
30
36
|
export declare const deserializeAws_restJson1BatchUpdateAttendeeCapabilitiesExceptCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchUpdateAttendeeCapabilitiesExceptCommandOutput>;
|
|
@@ -36,6 +42,9 @@ export declare const deserializeAws_restJson1DeleteMeetingCommand: (output: __Ht
|
|
|
36
42
|
export declare const deserializeAws_restJson1GetAttendeeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAttendeeCommandOutput>;
|
|
37
43
|
export declare const deserializeAws_restJson1GetMeetingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMeetingCommandOutput>;
|
|
38
44
|
export declare const deserializeAws_restJson1ListAttendeesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAttendeesCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
39
46
|
export declare const deserializeAws_restJson1StartMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartMeetingTranscriptionCommandOutput>;
|
|
40
47
|
export declare const deserializeAws_restJson1StopMeetingTranscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopMeetingTranscriptionCommandOutput>;
|
|
48
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
41
50
|
export declare const deserializeAws_restJson1UpdateAttendeeCapabilitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
@@ -10,8 +10,11 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./command
|
|
|
10
10
|
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
|
|
11
11
|
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
|
|
12
12
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
13
14
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
14
15
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
16
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
15
18
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
16
19
|
|
|
17
20
|
export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
@@ -56,6 +59,10 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
56
59
|
listAttendees(args: ListAttendeesCommandInput, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
57
60
|
listAttendees(args: ListAttendeesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAttendeesCommandOutput) => void): void;
|
|
58
61
|
|
|
62
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
63
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
64
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
65
|
+
|
|
59
66
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options?: __HttpHandlerOptions): Promise<StartMeetingTranscriptionCommandOutput>;
|
|
60
67
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
61
68
|
startMeetingTranscription(args: StartMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMeetingTranscriptionCommandOutput) => void): void;
|
|
@@ -64,6 +71,14 @@ export declare class ChimeSDKMeetings extends ChimeSDKMeetingsClient {
|
|
|
64
71
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
65
72
|
stopMeetingTranscription(args: StopMeetingTranscriptionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopMeetingTranscriptionCommandOutput) => void): void;
|
|
66
73
|
|
|
74
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
75
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
76
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
77
|
+
|
|
78
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
79
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
80
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
81
|
+
|
|
67
82
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAttendeeCapabilitiesCommandOutput>;
|
|
68
83
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
69
84
|
updateAttendeeCapabilities(args: UpdateAttendeeCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAttendeeCapabilitiesCommandOutput) => void): void;
|
|
@@ -16,11 +16,14 @@ import { DeleteMeetingCommandInput, DeleteMeetingCommandOutput } from "./command
|
|
|
16
16
|
import { GetAttendeeCommandInput, GetAttendeeCommandOutput } from "./commands/GetAttendeeCommand";
|
|
17
17
|
import { GetMeetingCommandInput, GetMeetingCommandOutput } from "./commands/GetMeetingCommand";
|
|
18
18
|
import { ListAttendeesCommandInput, ListAttendeesCommandOutput } from "./commands/ListAttendeesCommand";
|
|
19
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
19
20
|
import { StartMeetingTranscriptionCommandInput, StartMeetingTranscriptionCommandOutput } from "./commands/StartMeetingTranscriptionCommand";
|
|
20
21
|
import { StopMeetingTranscriptionCommandInput, StopMeetingTranscriptionCommandOutput } from "./commands/StopMeetingTranscriptionCommand";
|
|
22
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
23
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
21
24
|
import { UpdateAttendeeCapabilitiesCommandInput, UpdateAttendeeCapabilitiesCommandOutput } from "./commands/UpdateAttendeeCapabilitiesCommand";
|
|
22
|
-
export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | UpdateAttendeeCapabilitiesCommandInput;
|
|
23
|
-
export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
|
|
25
|
+
export declare type ServiceInputTypes = BatchCreateAttendeeCommandInput | BatchUpdateAttendeeCapabilitiesExceptCommandInput | CreateAttendeeCommandInput | CreateMeetingCommandInput | CreateMeetingWithAttendeesCommandInput | DeleteAttendeeCommandInput | DeleteMeetingCommandInput | GetAttendeeCommandInput | GetMeetingCommandInput | ListAttendeesCommandInput | ListTagsForResourceCommandInput | StartMeetingTranscriptionCommandInput | StopMeetingTranscriptionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAttendeeCapabilitiesCommandInput;
|
|
26
|
+
export declare type ServiceOutputTypes = BatchCreateAttendeeCommandOutput | BatchUpdateAttendeeCapabilitiesExceptCommandOutput | CreateAttendeeCommandOutput | CreateMeetingCommandOutput | CreateMeetingWithAttendeesCommandOutput | DeleteAttendeeCommandOutput | DeleteMeetingCommandOutput | GetAttendeeCommandOutput | GetMeetingCommandOutput | ListAttendeesCommandOutput | ListTagsForResourceCommandOutput | StartMeetingTranscriptionCommandOutput | StopMeetingTranscriptionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAttendeeCapabilitiesCommandOutput;
|
|
24
27
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
25
28
|
|
|
26
29
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
12
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient";
|
|
4
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ChimeSDKMeetingsClientResolvedConfig> {
|
|
11
|
+
readonly input: TagResourceCommandInput;
|
|
12
|
+
constructor(input: TagResourceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ChimeSDKMeetingsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|