@aws-sdk/client-ivschat 3.533.0 → 3.535.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.
Files changed (39) hide show
  1. package/dist-types/Ivschat.d.ts +4 -1
  2. package/dist-types/IvschatClient.d.ts +1 -1
  3. package/dist-types/commands/CreateChatTokenCommand.d.ts +2 -1
  4. package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +2 -1
  5. package/dist-types/commands/CreateRoomCommand.d.ts +2 -1
  6. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +2 -1
  7. package/dist-types/commands/DeleteMessageCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteRoomCommand.d.ts +2 -1
  9. package/dist-types/commands/DisconnectUserCommand.d.ts +2 -1
  10. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +2 -1
  11. package/dist-types/commands/GetRoomCommand.d.ts +2 -1
  12. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListRoomsCommand.d.ts +2 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  15. package/dist-types/commands/SendEventCommand.d.ts +2 -1
  16. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  18. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +2 -1
  19. package/dist-types/commands/UpdateRoomCommand.d.ts +2 -1
  20. package/dist-types/models/models_0.d.ts +166 -166
  21. package/dist-types/ts3.4/Ivschat.d.ts +3 -0
  22. package/dist-types/ts3.4/commands/CreateChatTokenCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/CreateRoomCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/DeleteRoomCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/DisconnectUserCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/GetLoggingConfigurationCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +7 -0
  31. package/dist-types/ts3.4/commands/ListLoggingConfigurationsCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/ListRoomsCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/UpdateRoomCommand.d.ts +9 -0
  39. package/package.json +40 -40
@@ -33,6 +33,7 @@ export interface Ivschat {
33
33
  /**
34
34
  * @see {@link CreateRoomCommand}
35
35
  */
36
+ createRoom(): Promise<CreateRoomCommandOutput>;
36
37
  createRoom(args: CreateRoomCommandInput, options?: __HttpHandlerOptions): Promise<CreateRoomCommandOutput>;
37
38
  createRoom(args: CreateRoomCommandInput, cb: (err: any, data?: CreateRoomCommandOutput) => void): void;
38
39
  createRoom(args: CreateRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRoomCommandOutput) => void): void;
@@ -75,12 +76,14 @@ export interface Ivschat {
75
76
  /**
76
77
  * @see {@link ListLoggingConfigurationsCommand}
77
78
  */
79
+ listLoggingConfigurations(): Promise<ListLoggingConfigurationsCommandOutput>;
78
80
  listLoggingConfigurations(args: ListLoggingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListLoggingConfigurationsCommandOutput>;
79
81
  listLoggingConfigurations(args: ListLoggingConfigurationsCommandInput, cb: (err: any, data?: ListLoggingConfigurationsCommandOutput) => void): void;
80
82
  listLoggingConfigurations(args: ListLoggingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLoggingConfigurationsCommandOutput) => void): void;
81
83
  /**
82
84
  * @see {@link ListRoomsCommand}
83
85
  */
86
+ listRooms(): Promise<ListRoomsCommandOutput>;
84
87
  listRooms(args: ListRoomsCommandInput, options?: __HttpHandlerOptions): Promise<ListRoomsCommandOutput>;
85
88
  listRooms(args: ListRoomsCommandInput, cb: (err: any, data?: ListRoomsCommandOutput) => void): void;
86
89
  listRooms(args: ListRoomsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRoomsCommandOutput) => void): void;
@@ -122,7 +125,6 @@ export interface Ivschat {
122
125
  updateRoom(args: UpdateRoomCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRoomCommandOutput) => void): void;
123
126
  }
124
127
  /**
125
- * @public
126
128
  * <p>
127
129
  * <b>Introduction</b>
128
130
  * </p>
@@ -342,6 +344,7 @@ export interface Ivschat {
342
344
  * <p>All the above are HTTP operations. There is a separate <i>messaging</i> API
343
345
  * for managing Chat resources; see the <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/chat-messaging-api.html"> Amazon IVS Chat Messaging API
344
346
  * Reference</a>.</p>
347
+ * @public
345
348
  */
346
349
  export declare class Ivschat extends IvschatClient implements Ivschat {
347
350
  }
@@ -168,7 +168,6 @@ export type IvschatClientResolvedConfigType = __SmithyResolvedConfiguration<__Ht
168
168
  export interface IvschatClientResolvedConfig extends IvschatClientResolvedConfigType {
169
169
  }
170
170
  /**
171
- * @public
172
171
  * <p>
173
172
  * <b>Introduction</b>
174
173
  * </p>
@@ -388,6 +387,7 @@ export interface IvschatClientResolvedConfig extends IvschatClientResolvedConfig
388
387
  * <p>All the above are HTTP operations. There is a separate <i>messaging</i> API
389
388
  * for managing Chat resources; see the <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/chat-messaging-api.html"> Amazon IVS Chat Messaging API
390
389
  * Reference</a>.</p>
390
+ * @public
391
391
  */
392
392
  export declare class IvschatClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IvschatClientResolvedConfig> {
393
393
  /**
@@ -22,10 +22,10 @@ export interface CreateChatTokenCommandOutput extends CreateChatTokenResponse, _
22
22
  }
23
23
  declare const CreateChatTokenCommand_base: {
24
24
  new (input: CreateChatTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateChatTokenCommandInput, CreateChatTokenCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateChatTokenCommandInput): import("@smithy/smithy-client").CommandImpl<CreateChatTokenCommandInput, CreateChatTokenCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates an encrypted token that is used by a chat participant to establish an individual
30
30
  * WebSocket chat connection to a room. When the token is used to connect to chat, the
31
31
  * connection is valid for the session duration specified in the request. The token becomes
@@ -86,6 +86,7 @@ declare const CreateChatTokenCommand_base: {
86
86
  * @throws {@link IvschatServiceException}
87
87
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class CreateChatTokenCommand extends CreateChatTokenCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
22
22
  }
23
23
  declare const CreateLoggingConfigurationCommand_base: {
24
24
  new (input: CreateLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a logging configuration that allows clients to store and record sent
30
30
  * messages.</p>
31
31
  * @example
@@ -105,6 +105,7 @@ declare const CreateLoggingConfigurationCommand_base: {
105
105
  * @throws {@link IvschatServiceException}
106
106
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
107
107
  *
108
+ * @public
108
109
  */
109
110
  export declare class CreateLoggingConfigurationCommand extends CreateLoggingConfigurationCommand_base {
110
111
  }
@@ -22,10 +22,10 @@ export interface CreateRoomCommandOutput extends CreateRoomResponse, __MetadataB
22
22
  }
23
23
  declare const CreateRoomCommand_base: {
24
24
  new (input: CreateRoomCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRoomCommandInput, CreateRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [CreateRoomCommandInput]): import("@smithy/smithy-client").CommandImpl<CreateRoomCommandInput, CreateRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a room that allows clients to connect and pass messages.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -99,6 +99,7 @@ declare const CreateRoomCommand_base: {
99
99
  * @throws {@link IvschatServiceException}
100
100
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
101
101
  *
102
+ * @public
102
103
  */
103
104
  export declare class CreateRoomCommand extends CreateRoomCommand_base {
104
105
  }
@@ -22,10 +22,10 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
22
22
  }
23
23
  declare const DeleteLoggingConfigurationCommand_base: {
24
24
  new (input: DeleteLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified logging configuration.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -66,6 +66,7 @@ declare const DeleteLoggingConfigurationCommand_base: {
66
66
  * @throws {@link IvschatServiceException}
67
67
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
68
68
  *
69
+ * @public
69
70
  */
70
71
  export declare class DeleteLoggingConfigurationCommand extends DeleteLoggingConfigurationCommand_base {
71
72
  }
@@ -22,10 +22,10 @@ export interface DeleteMessageCommandOutput extends DeleteMessageResponse, __Met
22
22
  }
23
23
  declare const DeleteMessageCommand_base: {
24
24
  new (input: DeleteMessageCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMessageCommandInput, DeleteMessageCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteMessageCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMessageCommandInput, DeleteMessageCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Sends an event to a specific room which directs clients to delete a specific message;
30
30
  * that is, unrender it from view and delete it from the client’s chat history. This event’s
31
31
  * <code>EventName</code> is <code>aws:DELETE_MESSAGE</code>. This replicates the <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-deletemessage-publish.html">
@@ -73,6 +73,7 @@ declare const DeleteMessageCommand_base: {
73
73
  * @throws {@link IvschatServiceException}
74
74
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class DeleteMessageCommand extends DeleteMessageCommand_base {
78
79
  }
@@ -22,10 +22,10 @@ export interface DeleteRoomCommandOutput extends __MetadataBearer {
22
22
  }
23
23
  declare const DeleteRoomCommand_base: {
24
24
  new (input: DeleteRoomCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRoomCommandInput, DeleteRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteRoomCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRoomCommandInput, DeleteRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified room.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -63,6 +63,7 @@ declare const DeleteRoomCommand_base: {
63
63
  * @throws {@link IvschatServiceException}
64
64
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class DeleteRoomCommand extends DeleteRoomCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface DisconnectUserCommandOutput extends DisconnectUserResponse, __M
22
22
  }
23
23
  declare const DisconnectUserCommand_base: {
24
24
  new (input: DisconnectUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisconnectUserCommandInput, DisconnectUserCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DisconnectUserCommandInput): import("@smithy/smithy-client").CommandImpl<DisconnectUserCommandInput, DisconnectUserCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Disconnects all connections using a specified user ID from a room. This replicates the
30
30
  * <a href="https://docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-disconnectuser-publish.html">
31
31
  * DisconnectUser</a> WebSocket operation in the Amazon IVS Chat Messaging API.</p>
@@ -70,6 +70,7 @@ declare const DisconnectUserCommand_base: {
70
70
  * @throws {@link IvschatServiceException}
71
71
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class DisconnectUserCommand extends DisconnectUserCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
22
22
  }
23
23
  declare const GetLoggingConfigurationCommand_base: {
24
24
  new (input: GetLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets the specified logging configuration.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -81,6 +81,7 @@ declare const GetLoggingConfigurationCommand_base: {
81
81
  * @throws {@link IvschatServiceException}
82
82
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
83
83
  *
84
+ * @public
84
85
  */
85
86
  export declare class GetLoggingConfigurationCommand extends GetLoggingConfigurationCommand_base {
86
87
  }
@@ -22,10 +22,10 @@ export interface GetRoomCommandOutput extends GetRoomResponse, __MetadataBearer
22
22
  }
23
23
  declare const GetRoomCommand_base: {
24
24
  new (input: GetRoomCommandInput): import("@smithy/smithy-client").CommandImpl<GetRoomCommandInput, GetRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetRoomCommandInput): import("@smithy/smithy-client").CommandImpl<GetRoomCommandInput, GetRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets the specified room.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const GetRoomCommand_base: {
78
78
  * @throws {@link IvschatServiceException}
79
79
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class GetRoomCommand extends GetRoomCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface ListLoggingConfigurationsCommandOutput extends ListLoggingConfi
22
22
  }
23
23
  declare const ListLoggingConfigurationsCommand_base: {
24
24
  new (input: ListLoggingConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListLoggingConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets summary information about all your logging configurations in the AWS region where
30
30
  * the API request is processed.</p>
31
31
  * @example
@@ -85,6 +85,7 @@ declare const ListLoggingConfigurationsCommand_base: {
85
85
  * @throws {@link IvschatServiceException}
86
86
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class ListLoggingConfigurationsCommand extends ListLoggingConfigurationsCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface ListRoomsCommandOutput extends ListRoomsResponse, __MetadataBea
22
22
  }
23
23
  declare const ListRoomsCommand_base: {
24
24
  new (input: ListRoomsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRoomsCommandInput, ListRoomsCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListRoomsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListRoomsCommandInput, ListRoomsCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets summary information about all your rooms in the AWS region where the API request is
30
30
  * processed. Results are sorted in descending order of <code>updateTime</code>.</p>
31
31
  * @example
@@ -86,6 +86,7 @@ declare const ListRoomsCommand_base: {
86
86
  * @throws {@link IvschatServiceException}
87
87
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class ListRoomsCommand extends ListRoomsCommand_base {
91
92
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Gets information about AWS tags for the specified ARN.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -64,6 +64,7 @@ declare const ListTagsForResourceCommand_base: {
64
64
  * @throws {@link IvschatServiceException}
65
65
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
66
66
  *
67
+ * @public
67
68
  */
68
69
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
69
70
  }
@@ -22,10 +22,10 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
22
22
  }
23
23
  declare const SendEventCommand_base: {
24
24
  new (input: SendEventCommandInput): import("@smithy/smithy-client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: SendEventCommandInput): import("@smithy/smithy-client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Sends an event to a room. Use this within your application’s business logic to send
30
30
  * events to clients of a room; e.g., to notify clients to change the way the chat UI is
31
31
  * rendered.</p>
@@ -74,6 +74,7 @@ declare const SendEventCommand_base: {
74
74
  * @throws {@link IvschatServiceException}
75
75
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
76
76
  *
77
+ * @public
77
78
  */
78
79
  export declare class SendEventCommand extends SendEventCommand_base {
79
80
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds or updates tags for the AWS resource with the specified ARN.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -63,6 +63,7 @@ declare const TagResourceCommand_base: {
63
63
  * @throws {@link IvschatServiceException}
64
64
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class TagResourceCommand extends TagResourceCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes tags from the resource with the specified ARN.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -63,6 +63,7 @@ declare const UntagResourceCommand_base: {
63
63
  * @throws {@link IvschatServiceException}
64
64
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
65
65
  *
66
+ * @public
66
67
  */
67
68
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
68
69
  }
@@ -22,10 +22,10 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
22
22
  }
23
23
  declare const UpdateLoggingConfigurationCommand_base: {
24
24
  new (input: UpdateLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateLoggingConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a specified logging configuration.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -99,6 +99,7 @@ declare const UpdateLoggingConfigurationCommand_base: {
99
99
  * @throws {@link IvschatServiceException}
100
100
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
101
101
  *
102
+ * @public
102
103
  */
103
104
  export declare class UpdateLoggingConfigurationCommand extends UpdateLoggingConfigurationCommand_base {
104
105
  }
@@ -22,10 +22,10 @@ export interface UpdateRoomCommandOutput extends UpdateRoomResponse, __MetadataB
22
22
  }
23
23
  declare const UpdateRoomCommand_base: {
24
24
  new (input: UpdateRoomCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRoomCommandInput, UpdateRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateRoomCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateRoomCommandInput, UpdateRoomCommandOutput, IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a room’s configuration.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -91,6 +91,7 @@ declare const UpdateRoomCommand_base: {
91
91
  * @throws {@link IvschatServiceException}
92
92
  * <p>Base exception class for all service exceptions from Ivschat service.</p>
93
93
  *
94
+ * @public
94
95
  */
95
96
  export declare class UpdateRoomCommand extends UpdateRoomCommand_base {
96
97
  }