We are excited to announce our new API Documentation.
Protected
Updates a room’s configuration.
Use a bare-bones client and the command you need to make an API call.
import { IvschatClient, UpdateRoomCommand } from "@aws-sdk/client-ivschat"; // ES Modules import// const { IvschatClient, UpdateRoomCommand } = require("@aws-sdk/client-ivschat"); // CommonJS importconst client = new IvschatClient(config);const input = { // UpdateRoomRequest identifier: "STRING_VALUE", // required name: "STRING_VALUE", maximumMessageRatePerSecond: Number("int"), maximumMessageLength: Number("int"), messageReviewHandler: { // MessageReviewHandler uri: "STRING_VALUE", fallbackResult: "STRING_VALUE", }, loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList "STRING_VALUE", ],};const command = new UpdateRoomCommand(input);const response = await client.send(command);// { // UpdateRoomResponse// arn: "STRING_VALUE",// id: "STRING_VALUE",// name: "STRING_VALUE",// createTime: new Date("TIMESTAMP"),// updateTime: new Date("TIMESTAMP"),// maximumMessageRatePerSecond: Number("int"),// maximumMessageLength: Number("int"),// messageReviewHandler: { // MessageReviewHandler// uri: "STRING_VALUE",// fallbackResult: "STRING_VALUE",// },// tags: { // Tags// "<keys>": "STRING_VALUE",// },// loggingConfigurationIdentifiers: [ // LoggingConfigurationIdentifierList// "STRING_VALUE",// ],// };
UpdateRoomCommandInput
UpdateRoomCommandOutput
input
response
config
AccessDeniedException (client fault)
PendingVerification (client fault)
ResourceNotFoundException (client fault)
ValidationException (client fault)
IvschatServiceException
Base exception class for all service exceptions from Ivschat service.
Readonly
Static
Updates a room’s configuration.
Example
Use a bare-bones client and the command you need to make an API call.
Param
UpdateRoomCommandInput
Returns
UpdateRoomCommandOutput
See
input
shape.response
shape.config
shape.Throws
AccessDeniedException (client fault)
Throws
PendingVerification (client fault)
Throws
ResourceNotFoundException (client fault)
Throws
ValidationException (client fault)
Throws
IvschatServiceException
Base exception class for all service exceptions from Ivschat service.