Skip to content

ivschatClient#

Index > ivschat > ivschatClient

Auto-generated documentation for ivschat type annotations stubs module mypy-boto3-ivschat.

ivschatClient#

Type annotations and code completion for boto3.client("ivschat"). boto3 documentation

# ivschatClient usage example

from boto3.session import Session
from mypy_boto3_ivschat.client import ivschatClient

def get_ivschat_client() -> ivschatClient:
    return Session().client("ivschat")

Exceptions#

boto3 client exceptions are generated in runtime. This class provides code completion for boto3.client("ivschat").exceptions structure.

# Exceptions.exceptions usage example

client = boto3.client("ivschat")

try:
    do_something(client)
except (
    client.exceptions.AccessDeniedException,
    client.exceptions.ClientError,
    client.exceptions.ConflictException,
    client.exceptions.InternalServerException,
    client.exceptions.PendingVerification,
    client.exceptions.ResourceNotFoundException,
    client.exceptions.ServiceQuotaExceededException,
    client.exceptions.ThrottlingException,
    client.exceptions.ValidationException,
) as e:
    print(e)
# Exceptions.exceptions type checking example

from mypy_boto3_ivschat.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for boto3.client("ivschat").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

Type annotations and code completion for boto3.client("ivschat").close method. boto3 documentation

# close method definition

def close(
    self,
) -> None:
    ...

create_chat_token#

Creates an encrypted token that is used by a chat participant to establish an individual WebSocket chat connection to a room.

Type annotations and code completion for boto3.client("ivschat").create_chat_token method. boto3 documentation

# create_chat_token method definition

def create_chat_token(
    self,
    *,
    roomIdentifier: str,
    userId: str,
    attributes: Mapping[str, str] = ...,
    capabilities: Sequence[ChatTokenCapabilityType] = ...,  # (1)
    sessionDurationInMinutes: int = ...,
) -> CreateChatTokenResponseTypeDef:  # (2)
    ...
  1. See ChatTokenCapabilityType
  2. See CreateChatTokenResponseTypeDef
# create_chat_token method usage example with argument unpacking

kwargs: CreateChatTokenRequestRequestTypeDef = {  # (1)
    "roomIdentifier": ...,
    "userId": ...,
}

parent.create_chat_token(**kwargs)
  1. See CreateChatTokenRequestRequestTypeDef

create_logging_configuration#

Creates a logging configuration that allows clients to store and record sent messages.

Type annotations and code completion for boto3.client("ivschat").create_logging_configuration method. boto3 documentation

# create_logging_configuration method definition

def create_logging_configuration(
    self,
    *,
    destinationConfiguration: DestinationConfigurationTypeDef,  # (1)
    name: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateLoggingConfigurationResponseTypeDef:  # (2)
    ...
  1. See DestinationConfigurationTypeDef
  2. See CreateLoggingConfigurationResponseTypeDef
# create_logging_configuration method usage example with argument unpacking

kwargs: CreateLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "destinationConfiguration": ...,
}

parent.create_logging_configuration(**kwargs)
  1. See CreateLoggingConfigurationRequestRequestTypeDef

create_room#

Creates a room that allows clients to connect and pass messages.

Type annotations and code completion for boto3.client("ivschat").create_room method. boto3 documentation

# create_room method definition

def create_room(
    self,
    *,
    loggingConfigurationIdentifiers: Sequence[str] = ...,
    maximumMessageLength: int = ...,
    maximumMessageRatePerSecond: int = ...,
    messageReviewHandler: MessageReviewHandlerTypeDef = ...,  # (1)
    name: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateRoomResponseTypeDef:  # (2)
    ...
  1. See MessageReviewHandlerTypeDef
  2. See CreateRoomResponseTypeDef
# create_room method usage example with argument unpacking

kwargs: CreateRoomRequestRequestTypeDef = {  # (1)
    "loggingConfigurationIdentifiers": ...,
}

parent.create_room(**kwargs)
  1. See CreateRoomRequestRequestTypeDef

delete_logging_configuration#

Deletes the specified logging configuration.

Type annotations and code completion for boto3.client("ivschat").delete_logging_configuration method. boto3 documentation

# delete_logging_configuration method definition

def delete_logging_configuration(
    self,
    *,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_logging_configuration method usage example with argument unpacking

kwargs: DeleteLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "identifier": ...,
}

parent.delete_logging_configuration(**kwargs)
  1. See DeleteLoggingConfigurationRequestRequestTypeDef

delete_message#

Sends an event to a specific room which directs clients to delete a specific message; that is, unrender it from view and delete it from the client’s chat history.

Type annotations and code completion for boto3.client("ivschat").delete_message method. boto3 documentation

# delete_message method definition

def delete_message(
    self,
    *,
    id: str,
    roomIdentifier: str,
    reason: str = ...,
) -> DeleteMessageResponseTypeDef:  # (1)
    ...
  1. See DeleteMessageResponseTypeDef
# delete_message method usage example with argument unpacking

kwargs: DeleteMessageRequestRequestTypeDef = {  # (1)
    "id": ...,
    "roomIdentifier": ...,
}

parent.delete_message(**kwargs)
  1. See DeleteMessageRequestRequestTypeDef

delete_room#

Deletes the specified room.

Type annotations and code completion for boto3.client("ivschat").delete_room method. boto3 documentation

# delete_room method definition

def delete_room(
    self,
    *,
    identifier: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
# delete_room method usage example with argument unpacking

kwargs: DeleteRoomRequestRequestTypeDef = {  # (1)
    "identifier": ...,
}

parent.delete_room(**kwargs)
  1. See DeleteRoomRequestRequestTypeDef

disconnect_user#

Disconnects all connections using a specified user ID from a room.

Type annotations and code completion for boto3.client("ivschat").disconnect_user method. boto3 documentation

# disconnect_user method definition

def disconnect_user(
    self,
    *,
    roomIdentifier: str,
    userId: str,
    reason: str = ...,
) -> Dict[str, Any]:
    ...
# disconnect_user method usage example with argument unpacking

kwargs: DisconnectUserRequestRequestTypeDef = {  # (1)
    "roomIdentifier": ...,
    "userId": ...,
}

parent.disconnect_user(**kwargs)
  1. See DisconnectUserRequestRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for boto3.client("ivschat").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_logging_configuration#

Gets the specified logging configuration.

Type annotations and code completion for boto3.client("ivschat").get_logging_configuration method. boto3 documentation

# get_logging_configuration method definition

def get_logging_configuration(
    self,
    *,
    identifier: str,
) -> GetLoggingConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetLoggingConfigurationResponseTypeDef
# get_logging_configuration method usage example with argument unpacking

kwargs: GetLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "identifier": ...,
}

parent.get_logging_configuration(**kwargs)
  1. See GetLoggingConfigurationRequestRequestTypeDef

get_room#

Gets the specified room.

Type annotations and code completion for boto3.client("ivschat").get_room method. boto3 documentation

# get_room method definition

def get_room(
    self,
    *,
    identifier: str,
) -> GetRoomResponseTypeDef:  # (1)
    ...
  1. See GetRoomResponseTypeDef
# get_room method usage example with argument unpacking

kwargs: GetRoomRequestRequestTypeDef = {  # (1)
    "identifier": ...,
}

parent.get_room(**kwargs)
  1. See GetRoomRequestRequestTypeDef

list_logging_configurations#

Gets summary information about all your logging configurations in the AWS region where the API request is processed.

Type annotations and code completion for boto3.client("ivschat").list_logging_configurations method. boto3 documentation

# list_logging_configurations method definition

def list_logging_configurations(
    self,
    *,
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListLoggingConfigurationsResponseTypeDef:  # (1)
    ...
  1. See ListLoggingConfigurationsResponseTypeDef
# list_logging_configurations method usage example with argument unpacking

kwargs: ListLoggingConfigurationsRequestRequestTypeDef = {  # (1)
    "maxResults": ...,
}

parent.list_logging_configurations(**kwargs)
  1. See ListLoggingConfigurationsRequestRequestTypeDef

list_rooms#

Gets summary information about all your rooms in the AWS region where the API request is processed.

Type annotations and code completion for boto3.client("ivschat").list_rooms method. boto3 documentation

# list_rooms method definition

def list_rooms(
    self,
    *,
    loggingConfigurationIdentifier: str = ...,
    maxResults: int = ...,
    messageReviewHandlerUri: str = ...,
    name: str = ...,
    nextToken: str = ...,
) -> ListRoomsResponseTypeDef:  # (1)
    ...
  1. See ListRoomsResponseTypeDef
# list_rooms method usage example with argument unpacking

kwargs: ListRoomsRequestRequestTypeDef = {  # (1)
    "loggingConfigurationIdentifier": ...,
}

parent.list_rooms(**kwargs)
  1. See ListRoomsRequestRequestTypeDef

list_tags_for_resource#

Gets information about AWS tags for the specified ARN.

Type annotations and code completion for boto3.client("ivschat").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

send_event#

Sends an event to a room.

Type annotations and code completion for boto3.client("ivschat").send_event method. boto3 documentation

# send_event method definition

def send_event(
    self,
    *,
    eventName: str,
    roomIdentifier: str,
    attributes: Mapping[str, str] = ...,
) -> SendEventResponseTypeDef:  # (1)
    ...
  1. See SendEventResponseTypeDef
# send_event method usage example with argument unpacking

kwargs: SendEventRequestRequestTypeDef = {  # (1)
    "eventName": ...,
    "roomIdentifier": ...,
}

parent.send_event(**kwargs)
  1. See SendEventRequestRequestTypeDef

tag_resource#

Adds or updates tags for the AWS resource with the specified ARN.

Type annotations and code completion for boto3.client("ivschat").tag_resource method. boto3 documentation

# tag_resource method definition

def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
# tag_resource method usage example with argument unpacking

kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource#

Removes tags from the resource with the specified ARN.

Type annotations and code completion for boto3.client("ivschat").untag_resource method. boto3 documentation

# untag_resource method definition

def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
# untag_resource method usage example with argument unpacking

kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

update_logging_configuration#

Updates a specified logging configuration.

Type annotations and code completion for boto3.client("ivschat").update_logging_configuration method. boto3 documentation

# update_logging_configuration method definition

def update_logging_configuration(
    self,
    *,
    identifier: str,
    destinationConfiguration: DestinationConfigurationTypeDef = ...,  # (1)
    name: str = ...,
) -> UpdateLoggingConfigurationResponseTypeDef:  # (2)
    ...
  1. See DestinationConfigurationTypeDef
  2. See UpdateLoggingConfigurationResponseTypeDef
# update_logging_configuration method usage example with argument unpacking

kwargs: UpdateLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "identifier": ...,
}

parent.update_logging_configuration(**kwargs)
  1. See UpdateLoggingConfigurationRequestRequestTypeDef

update_room#

Updates a room’s configuration.

Type annotations and code completion for boto3.client("ivschat").update_room method. boto3 documentation

# update_room method definition

def update_room(
    self,
    *,
    identifier: str,
    loggingConfigurationIdentifiers: Sequence[str] = ...,
    maximumMessageLength: int = ...,
    maximumMessageRatePerSecond: int = ...,
    messageReviewHandler: MessageReviewHandlerTypeDef = ...,  # (1)
    name: str = ...,
) -> UpdateRoomResponseTypeDef:  # (2)
    ...
  1. See MessageReviewHandlerTypeDef
  2. See UpdateRoomResponseTypeDef
# update_room method usage example with argument unpacking

kwargs: UpdateRoomRequestRequestTypeDef = {  # (1)
    "identifier": ...,
}

parent.update_room(**kwargs)
  1. See UpdateRoomRequestRequestTypeDef