ivschat / Client / update_room

update_room#

ivschat.Client.update_room(**kwargs)#

Updates a room’s configuration.

See also: AWS API Documentation

Request Syntax

response = client.update_room(
    identifier='string',
    loggingConfigurationIdentifiers=[
        'string',
    ],
    maximumMessageLength=123,
    maximumMessageRatePerSecond=123,
    messageReviewHandler={
        'fallbackResult': 'ALLOW'|'DENY',
        'uri': 'string'
    },
    name='string'
)
Parameters:
  • identifier (string) –

    [REQUIRED]

    Identifier of the room to be updated. Currently this must be an ARN.

  • loggingConfigurationIdentifiers (list) –

    Array of logging-configuration identifiers attached to the room.

    • (string) –

  • maximumMessageLength (integer) – The maximum number of characters in a single message. Messages are expected to be UTF-8 encoded and this limit applies specifically to rune/code-point count, not number of bytes. Default: 500.

  • maximumMessageRatePerSecond (integer) – Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.

  • messageReviewHandler (dict) –

    Configuration information for optional review of messages. Specify an empty uri string to disassociate a message review handler from the specified room.

    • fallbackResult (string) –

      Specifies the fallback behavior (whether the message is allowed or denied) if the handler does not return a valid response, encounters an error, or times out. (For the timeout period, see Service Quotas.) If allowed, the message is delivered with returned content to all users connected to the room. If denied, the message is not delivered to any user. Default: ALLOW.

    • uri (string) –

      Identifier of the message review handler. Currently this must be an ARN of a lambda function.

  • name (string) – Room name. The value does not need to be unique.

Return type:

dict

Returns:

Response Syntax

{
    'arn': 'string',
    'createTime': datetime(2015, 1, 1),
    'id': 'string',
    'loggingConfigurationIdentifiers': [
        'string',
    ],
    'maximumMessageLength': 123,
    'maximumMessageRatePerSecond': 123,
    'messageReviewHandler': {
        'fallbackResult': 'ALLOW'|'DENY',
        'uri': 'string'
    },
    'name': 'string',
    'tags': {
        'string': 'string'
    },
    'updateTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) –

    • arn (string) –

      Room ARN, from the request (if identifier was an ARN).

    • createTime (datetime) –

      Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.

    • id (string) –

      Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.

    • loggingConfigurationIdentifiers (list) –

      Array of logging configurations attached to the room, from the request (if specified).

      • (string) –

    • maximumMessageLength (integer) –

      Maximum number of characters in a single message, from the request (if specified).

    • maximumMessageRatePerSecond (integer) –

      Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).

    • messageReviewHandler (dict) –

      Configuration information for optional review of messages.

      • fallbackResult (string) –

        Specifies the fallback behavior (whether the message is allowed or denied) if the handler does not return a valid response, encounters an error, or times out. (For the timeout period, see Service Quotas.) If allowed, the message is delivered with returned content to all users connected to the room. If denied, the message is not delivered to any user. Default: ALLOW.

      • uri (string) –

        Identifier of the message review handler. Currently this must be an ARN of a lambda function.

    • name (string) –

      Room name, from the request (if specified).

    • tags (dict) –

      Tags attached to the resource. Array of maps, each of the form string:string (key:value).

      • (string) –

        • (string) –

    • updateTime (datetime) –

      Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.

Exceptions

  • ivschat.Client.exceptions.AccessDeniedException

  • ivschat.Client.exceptions.ResourceNotFoundException

  • ivschat.Client.exceptions.PendingVerification

  • ivschat.Client.exceptions.ValidationException