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.
boto3 documentation
# delete_attendee method definition
def delete_attendee(
self,
*,
MeetingId: str,
AttendeeId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_attendee method usage example with argument unpacking
kwargs: DeleteAttendeeRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"AttendeeId": ...,
}
parent.delete_attendee(**kwargs)
delete_meeting#
Deletes the specified Amazon Chime SDK meeting.
Type annotations and code completion for boto3.client("chime-sdk-meetings").delete_meeting
method.
boto3 documentation
# delete_meeting method definition
def delete_meeting(
self,
*,
MeetingId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# delete_meeting method usage example with argument unpacking
kwargs: DeleteMeetingRequestRequestTypeDef = { # (1)
"MeetingId": ...,
}
parent.delete_meeting(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
Type annotations and code completion for boto3.client("chime-sdk-meetings").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_attendee#
Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID.
Type annotations and code completion for boto3.client("chime-sdk-meetings").get_attendee
method.
boto3 documentation
# get_attendee method definition
def get_attendee(
self,
*,
MeetingId: str,
AttendeeId: str,
) -> GetAttendeeResponseTypeDef: # (1)
...
# get_attendee method usage example with argument unpacking
kwargs: GetAttendeeRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"AttendeeId": ...,
}
parent.get_attendee(**kwargs)
get_meeting#
Gets the Amazon Chime SDK meeting details for the specified meeting ID.
Type annotations and code completion for boto3.client("chime-sdk-meetings").get_meeting
method.
boto3 documentation
# get_meeting method definition
def get_meeting(
self,
*,
MeetingId: str,
) -> GetMeetingResponseTypeDef: # (1)
...
# get_meeting method usage example with argument unpacking
kwargs: GetMeetingRequestRequestTypeDef = { # (1)
"MeetingId": ...,
}
parent.get_meeting(**kwargs)
list_attendees#
Lists the attendees for the specified Amazon Chime SDK meeting.
Type annotations and code completion for boto3.client("chime-sdk-meetings").list_attendees
method.
boto3 documentation
# list_attendees method definition
def list_attendees(
self,
*,
MeetingId: str,
NextToken: str = ...,
MaxResults: int = ...,
) -> ListAttendeesResponseTypeDef: # (1)
...
# list_attendees method usage example with argument unpacking
kwargs: ListAttendeesRequestRequestTypeDef = { # (1)
"MeetingId": ...,
}
parent.list_attendees(**kwargs)
list_tags_for_resource#
Returns a list of the tags available for the specified resource.
Type annotations and code completion for boto3.client("chime-sdk-meetings").list_tags_for_resource
method.
boto3 documentation
# list_tags_for_resource method definition
def list_tags_for_resource(
self,
*,
ResourceARN: str,
) -> ListTagsForResourceResponseTypeDef: # (1)
...
# list_tags_for_resource method usage example with argument unpacking
kwargs: ListTagsForResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
}
parent.list_tags_for_resource(**kwargs)
start_meeting_transcription#
Starts transcription for the specified meetingId
.
Type annotations and code completion for boto3.client("chime-sdk-meetings").start_meeting_transcription
method.
boto3 documentation
# start_meeting_transcription method definition
def start_meeting_transcription(
self,
*,
MeetingId: str,
TranscriptionConfiguration: TranscriptionConfigurationTypeDef, # (1)
) -> EmptyResponseMetadataTypeDef: # (2)
...
# start_meeting_transcription method usage example with argument unpacking
kwargs: StartMeetingTranscriptionRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"TranscriptionConfiguration": ...,
}
parent.start_meeting_transcription(**kwargs)
stop_meeting_transcription#
Stops transcription for the specified meetingId
.
Type annotations and code completion for boto3.client("chime-sdk-meetings").stop_meeting_transcription
method.
boto3 documentation
# stop_meeting_transcription method definition
def stop_meeting_transcription(
self,
*,
MeetingId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
# stop_meeting_transcription method usage example with argument unpacking
kwargs: StopMeetingTranscriptionRequestRequestTypeDef = { # (1)
"MeetingId": ...,
}
parent.stop_meeting_transcription(**kwargs)
tag_resource#
The resource that supports tags.
Type annotations and code completion for boto3.client("chime-sdk-meetings").tag_resource
method.
boto3 documentation
# tag_resource method definition
def tag_resource(
self,
*,
ResourceARN: str,
Tags: Sequence[TagTypeDef], # (1)
) -> Dict[str, Any]:
...
- See TagTypeDef
# tag_resource method usage example with argument unpacking
kwargs: TagResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
"Tags": ...,
}
parent.tag_resource(**kwargs)
untag_resource#
Removes the specified tags from the specified resources.
Type annotations and code completion for boto3.client("chime-sdk-meetings").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)
update_attendee_capabilities#
The capabilities that you want to update.
Type annotations and code completion for boto3.client("chime-sdk-meetings").update_attendee_capabilities
method.
boto3 documentation
# update_attendee_capabilities method definition
def update_attendee_capabilities(
self,
*,
MeetingId: str,
AttendeeId: str,
Capabilities: AttendeeCapabilitiesTypeDef, # (1)
) -> UpdateAttendeeCapabilitiesResponseTypeDef: # (2)
...
# update_attendee_capabilities method usage example with argument unpacking
kwargs: UpdateAttendeeCapabilitiesRequestRequestTypeDef = { # (1)
"MeetingId": ...,
"AttendeeId": ...,
"Capabilities": ...,
}
parent.update_attendee_capabilities(**kwargs)