ChimeSDKMeetingsClient#
Index > ChimeSDKMeetings > ChimeSDKMeetingsClient
Auto-generated documentation for ChimeSDKMeetings type annotations stubs module mypy-boto3-chime-sdk-meetings.
ChimeSDKMeetingsClient#
Type annotations and code completion for boto3.client("chime-sdk-meetings")
.
boto3 documentation
# ChimeSDKMeetingsClient usage example
from boto3.session import Session
from mypy_boto3_chime_sdk_meetings.client import ChimeSDKMeetingsClient
def get_chime-sdk-meetings_client() -> ChimeSDKMeetingsClient:
return Session().client("chime-sdk-meetings")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("chime-sdk-meetings").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("chime-sdk-meetings")
try:
do_something(client)
except (
client.exceptions.BadRequestException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.ForbiddenException,
client.exceptions.LimitExceededException,
client.exceptions.NotFoundException,
client.exceptions.ResourceNotFoundException,
client.exceptions.ServiceFailureException,
client.exceptions.ServiceUnavailableException,
client.exceptions.ThrottlingException,
client.exceptions.TooManyTagsException,
client.exceptions.UnauthorizedException,
client.exceptions.UnprocessableEntityException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_chime_sdk_meetings.client import Exceptions
def handle_error(exc: Exceptions.BadRequestException) -> None:
...
Methods#
batch_create_attendee#
Creates up to 100 attendees for an active Amazon Chime SDK meeting.
Type annotations and code completion for boto3.client("chime-sdk-meetings").batch_create_attendee
method.
boto3 documentation
# batch_create_attendee method definition
def batch_create_attendee(
self,
*,
MeetingId: str,
Attendees: Sequence[CreateAttendeeRequestItemTypeDef], # (1)
) -> BatchCreateAttendeeResponseTypeDef: # (2)
...
# batch_create_attendee method usage example with argument unpacking
kwargs: BatchCreateAttendeeRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"Attendees": ...,
}
parent.batch_create_attendee(**kwargs)
batch_update_attendee_capabilities_except#
Updates AttendeeCapabilities
except the capabilities listed in an
ExcludedAttendeeIds
table.
Type annotations and code completion for boto3.client("chime-sdk-meetings").batch_update_attendee_capabilities_except
method.
boto3 documentation
# batch_update_attendee_capabilities_except method definition
def batch_update_attendee_capabilities_except(
self,
*,
MeetingId: str,
ExcludedAttendeeIds: Sequence[AttendeeIdItemTypeDef], # (1)
Capabilities: AttendeeCapabilitiesTypeDef, # (2)
) -> EmptyResponseMetadataTypeDef: # (3)
...
# batch_update_attendee_capabilities_except method usage example with argument unpacking
kwargs: BatchUpdateAttendeeCapabilitiesExceptRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"ExcludedAttendeeIds": ...,
"Capabilities": ...,
}
parent.batch_update_attendee_capabilities_except(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("chime-sdk-meetings").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("chime-sdk-meetings").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_attendee#
Creates a new attendee for an active Amazon Chime SDK meeting.
Type annotations and code completion for boto3.client("chime-sdk-meetings").create_attendee
method.
boto3 documentation
# create_attendee method definition
def create_attendee(
self,
*,
MeetingId: str,
ExternalUserId: str,
Capabilities: AttendeeCapabilitiesTypeDef = ..., # (1)
) -> CreateAttendeeResponseTypeDef: # (2)
...
# create_attendee method usage example with argument unpacking
kwargs: CreateAttendeeRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"ExternalUserId": ...,
}
parent.create_attendee(**kwargs)
create_meeting#
Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees.
Type annotations and code completion for boto3.client("chime-sdk-meetings").create_meeting
method.
boto3 documentation
# create_meeting method definition
def create_meeting(
self,
*,
ClientRequestToken: str,
MediaRegion: str,
ExternalMeetingId: str,
MeetingHostId: str = ...,
NotificationsConfiguration: NotificationsConfigurationTypeDef = ..., # (1)
MeetingFeatures: MeetingFeaturesConfigurationTypeDef = ..., # (2)
PrimaryMeetingId: str = ...,
TenantIds: Sequence[str] = ...,
Tags: Sequence[TagTypeDef] = ..., # (3)
) -> CreateMeetingResponseTypeDef: # (4)
...
- See NotificationsConfigurationTypeDef
- See MeetingFeaturesConfigurationTypeDef
- See TagTypeDef
- See CreateMeetingResponseTypeDef
# create_meeting method usage example with argument unpacking
kwargs: CreateMeetingRequestRequestTypeDef = { # (1)
"ClientRequestToken": ...,
"MediaRegion": ...,
"ExternalMeetingId": ...,
}
parent.create_meeting(**kwargs)
create_meeting_with_attendees#
Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees.
Type annotations and code completion for boto3.client("chime-sdk-meetings").create_meeting_with_attendees
method.
boto3 documentation
# create_meeting_with_attendees method definition
def create_meeting_with_attendees(
self,
*,
ClientRequestToken: str,
MediaRegion: str,
ExternalMeetingId: str,
Attendees: Sequence[CreateAttendeeRequestItemTypeDef], # (1)
MeetingHostId: str = ...,
MeetingFeatures: MeetingFeaturesConfigurationTypeDef = ..., # (2)
NotificationsConfiguration: NotificationsConfigurationTypeDef = ..., # (3)
PrimaryMeetingId: str = ...,
TenantIds: Sequence[str] = ...,
Tags: Sequence[TagTypeDef] = ..., # (4)
) -> CreateMeetingWithAttendeesResponseTypeDef: # (5)
...
- See CreateAttendeeRequestItemTypeDef
- See MeetingFeaturesConfigurationTypeDef
- See NotificationsConfigurationTypeDef
- See TagTypeDef
- See CreateMeetingWithAttendeesResponseTypeDef
# create_meeting_with_attendees method usage example with argument unpacking
kwargs: CreateMeetingWithAttendeesRequestRequestTypeDef = { # (1)
"ClientRequestToken": ...,
"MediaRegion": ...,
"ExternalMeetingId": ...,
"Attendees": ...,
}
parent.create_meeting_with_attendees(**kwargs)
delete_attendee#
Deletes an attendee from the specified Amazon Chime SDK meeting and deletes
their
JoinToken
.
Type annotations and code completion for boto3.client("chime-sdk-meetings").delete_attendee
method.