ChimeSDKVoiceClient
Index > ChimeSDKVoice > ChimeSDKVoiceClient
Auto-generated documentation for ChimeSDKVoice type annotations stubs module mypy-boto3-chime-sdk-voice.
ChimeSDKVoiceClient
Type annotations and code completion for boto3.client("chime-sdk-voice")
.
boto3 documentation
from boto3.session import Session
from mypy_boto3_chime_sdk_voice.client import ChimeSDKVoiceClient
def get_chime-sdk-voice_client() -> ChimeSDKVoiceClient:
return Session().client("chime-sdk-voice")
Exceptions
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("chime-sdk-voice").exceptions
structure.
client = boto3.client("chime-sdk-voice")
try:
do_something(client)
except (
client.AccessDeniedException,
client.BadRequestException,
client.ClientError,
client.ConflictException,
client.ForbiddenException,
client.NotFoundException,
client.ResourceLimitExceededException,
client.ServiceFailureException,
client.ServiceUnavailableException,
client.ThrottledClientException,
client.UnauthorizedClientException,
) as e:
print(e)
from mypy_boto3_chime_sdk_voice.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods
associate_phone_numbers_with_voice_connector
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").associate_phone_numbers_with_voice_connector
method.
boto3 documentation
def associate_phone_numbers_with_voice_connector(
self,
*,
VoiceConnectorId: str,
E164PhoneNumbers: Sequence[str],
ForceAssociate: bool = ...,
) -> AssociatePhoneNumbersWithVoiceConnectorResponseTypeDef: # (1)
...
kwargs: AssociatePhoneNumbersWithVoiceConnectorRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
"E164PhoneNumbers": ...,
}
parent.associate_phone_numbers_with_voice_connector(**kwargs)
associate_phone_numbers_with_voice_connector_group
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").associate_phone_numbers_with_voice_connector_group
method.
boto3 documentation
def associate_phone_numbers_with_voice_connector_group(
self,
*,
VoiceConnectorGroupId: str,
E164PhoneNumbers: Sequence[str],
ForceAssociate: bool = ...,
) -> AssociatePhoneNumbersWithVoiceConnectorGroupResponseTypeDef: # (1)
...
kwargs: AssociatePhoneNumbersWithVoiceConnectorGroupRequestRequestTypeDef = { # (1)
"VoiceConnectorGroupId": ...,
"E164PhoneNumbers": ...,
}
parent.associate_phone_numbers_with_voice_connector_group(**kwargs)
batch_delete_phone_number
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").batch_delete_phone_number
method.
boto3 documentation
def batch_delete_phone_number(
self,
*,
PhoneNumberIds: Sequence[str],
) -> BatchDeletePhoneNumberResponseTypeDef: # (1)
...
kwargs: BatchDeletePhoneNumberRequestRequestTypeDef = { # (1)
"PhoneNumberIds": ...,
}
parent.batch_delete_phone_number(**kwargs)
batch_update_phone_number
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").batch_update_phone_number
method.
boto3 documentation
def batch_update_phone_number(
self,
*,
UpdatePhoneNumberRequestItems: Sequence[UpdatePhoneNumberRequestItemTypeDef], # (1)
) -> BatchUpdatePhoneNumberResponseTypeDef: # (2)
...
kwargs: BatchUpdatePhoneNumberRequestRequestTypeDef = { # (1)
"UpdatePhoneNumberRequestItems": ...,
}
parent.batch_update_phone_number(**kwargs)
can_paginate
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("chime-sdk-voice").can_paginate
method.
boto3 documentation
close
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("chime-sdk-voice").close
method.
boto3 documentation
create_phone_number_order
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_phone_number_order
method.
boto3 documentation
def create_phone_number_order(
self,
*,
ProductType: PhoneNumberProductTypeType, # (1)
E164PhoneNumbers: Sequence[str],
) -> CreatePhoneNumberOrderResponseTypeDef: # (2)
...
kwargs: CreatePhoneNumberOrderRequestRequestTypeDef = { # (1)
"ProductType": ...,
"E164PhoneNumbers": ...,
}
parent.create_phone_number_order(**kwargs)
create_proxy_session
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_proxy_session
method.
boto3 documentation
def create_proxy_session(
self,
*,
VoiceConnectorId: str,
ParticipantPhoneNumbers: Sequence[str],
Capabilities: Sequence[CapabilityType], # (1)
Name: str = ...,
ExpiryMinutes: int = ...,
NumberSelectionBehavior: NumberSelectionBehaviorType = ..., # (2)
GeoMatchLevel: GeoMatchLevelType = ..., # (3)
GeoMatchParams: GeoMatchParamsTypeDef = ..., # (4)
) -> CreateProxySessionResponseTypeDef: # (5)
...
- See CapabilityType
- See NumberSelectionBehaviorType
- See GeoMatchLevelType
- See GeoMatchParamsTypeDef
- See CreateProxySessionResponseTypeDef
kwargs: CreateProxySessionRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
"ParticipantPhoneNumbers": ...,
"Capabilities": ...,
}
parent.create_proxy_session(**kwargs)
create_sip_media_application
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_sip_media_application
method.
boto3 documentation
def create_sip_media_application(
self,
*,
AwsRegion: str,
Name: str,
Endpoints: Sequence[SipMediaApplicationEndpointTypeDef], # (1)
) -> CreateSipMediaApplicationResponseTypeDef: # (2)
...
kwargs: CreateSipMediaApplicationRequestRequestTypeDef = { # (1)
"AwsRegion": ...,
"Name": ...,
"Endpoints": ...,
}
parent.create_sip_media_application(**kwargs)
create_sip_media_application_call
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_sip_media_application_call
method.
boto3 documentation
def create_sip_media_application_call(
self,
*,
FromPhoneNumber: str,
ToPhoneNumber: str,
SipMediaApplicationId: str,
SipHeaders: Mapping[str, str] = ...,
ArgumentsMap: Mapping[str, str] = ...,
) -> CreateSipMediaApplicationCallResponseTypeDef: # (1)
...
kwargs: CreateSipMediaApplicationCallRequestRequestTypeDef = { # (1)
"FromPhoneNumber": ...,
"ToPhoneNumber": ...,
"SipMediaApplicationId": ...,
}
parent.create_sip_media_application_call(**kwargs)
create_sip_rule
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_sip_rule
method.
boto3 documentation
def create_sip_rule(
self,
*,
Name: str,
TriggerType: SipRuleTriggerTypeType, # (1)
TriggerValue: str,
Disabled: bool = ...,
TargetApplications: Sequence[SipRuleTargetApplicationTypeDef] = ..., # (2)
) -> CreateSipRuleResponseTypeDef: # (3)
...
kwargs: CreateSipRuleRequestRequestTypeDef = { # (1)
"Name": ...,
"TriggerType": ...,
"TriggerValue": ...,
}
parent.create_sip_rule(**kwargs)
create_voice_connector
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_voice_connector
method.
boto3 documentation
def create_voice_connector(
self,
*,
Name: str,
RequireEncryption: bool,
AwsRegion: VoiceConnectorAwsRegionType = ..., # (1)
) -> CreateVoiceConnectorResponseTypeDef: # (2)
...
kwargs: CreateVoiceConnectorRequestRequestTypeDef = { # (1)
"Name": ...,
"RequireEncryption": ...,
}
parent.create_voice_connector(**kwargs)
create_voice_connector_group
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").create_voice_connector_group
method.
boto3 documentation
def create_voice_connector_group(
self,
*,
Name: str,
VoiceConnectorItems: Sequence[VoiceConnectorItemTypeDef] = ..., # (1)
) -> CreateVoiceConnectorGroupResponseTypeDef: # (2)
...
kwargs: CreateVoiceConnectorGroupRequestRequestTypeDef = { # (1)
"Name": ...,
}
parent.create_voice_connector_group(**kwargs)
delete_phone_number
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_phone_number
method.
boto3 documentation
def delete_phone_number(
self,
*,
PhoneNumberId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeletePhoneNumberRequestRequestTypeDef = { # (1)
"PhoneNumberId": ...,
}
parent.delete_phone_number(**kwargs)
delete_proxy_session
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_proxy_session
method.
boto3 documentation
def delete_proxy_session(
self,
*,
VoiceConnectorId: str,
ProxySessionId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteProxySessionRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
"ProxySessionId": ...,
}
parent.delete_proxy_session(**kwargs)
delete_sip_media_application
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_sip_media_application
method.
boto3 documentation
def delete_sip_media_application(
self,
*,
SipMediaApplicationId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteSipMediaApplicationRequestRequestTypeDef = { # (1)
"SipMediaApplicationId": ...,
}
parent.delete_sip_media_application(**kwargs)
delete_sip_rule
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_sip_rule
method.
boto3 documentation
def delete_sip_rule(
self,
*,
SipRuleId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteSipRuleRequestRequestTypeDef = { # (1)
"SipRuleId": ...,
}
parent.delete_sip_rule(**kwargs)
delete_voice_connector
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector
method.
boto3 documentation
def delete_voice_connector(
self,
*,
VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.delete_voice_connector(**kwargs)
delete_voice_connector_emergency_calling_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_emergency_calling_configuration
method.
boto3 documentation
def delete_voice_connector_emergency_calling_configuration(
self,
*,
VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.delete_voice_connector_emergency_calling_configuration(**kwargs)
delete_voice_connector_group
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_group
method.
boto3 documentation
def delete_voice_connector_group(
self,
*,
VoiceConnectorGroupId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorGroupRequestRequestTypeDef = { # (1)
"VoiceConnectorGroupId": ...,
}
parent.delete_voice_connector_group(**kwargs)
delete_voice_connector_origination
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_origination
method.
boto3 documentation
def delete_voice_connector_origination(
self,
*,
VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorOriginationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.delete_voice_connector_origination(**kwargs)
delete_voice_connector_proxy
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_proxy
method.
boto3 documentation
def delete_voice_connector_proxy(
self,
*,
VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorProxyRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.delete_voice_connector_proxy(**kwargs)
delete_voice_connector_streaming_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_streaming_configuration
method.
boto3 documentation
def delete_voice_connector_streaming_configuration(
self,
*,
VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorStreamingConfigurationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.delete_voice_connector_streaming_configuration(**kwargs)
delete_voice_connector_termination
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_termination
method.
boto3 documentation
def delete_voice_connector_termination(
self,
*,
VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorTerminationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.delete_voice_connector_termination(**kwargs)
delete_voice_connector_termination_credentials
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").delete_voice_connector_termination_credentials
method.
boto3 documentation
def delete_voice_connector_termination_credentials(
self,
*,
VoiceConnectorId: str,
Usernames: Sequence[str],
) -> EmptyResponseMetadataTypeDef: # (1)
...
kwargs: DeleteVoiceConnectorTerminationCredentialsRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
"Usernames": ...,
}
parent.delete_voice_connector_termination_credentials(**kwargs)
disassociate_phone_numbers_from_voice_connector
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").disassociate_phone_numbers_from_voice_connector
method.
boto3 documentation
def disassociate_phone_numbers_from_voice_connector(
self,
*,
VoiceConnectorId: str,
E164PhoneNumbers: Sequence[str],
) -> DisassociatePhoneNumbersFromVoiceConnectorResponseTypeDef: # (1)
...
kwargs: DisassociatePhoneNumbersFromVoiceConnectorRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
"E164PhoneNumbers": ...,
}
parent.disassociate_phone_numbers_from_voice_connector(**kwargs)
disassociate_phone_numbers_from_voice_connector_group
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").disassociate_phone_numbers_from_voice_connector_group
method.
boto3 documentation
def disassociate_phone_numbers_from_voice_connector_group(
self,
*,
VoiceConnectorGroupId: str,
E164PhoneNumbers: Sequence[str],
) -> DisassociatePhoneNumbersFromVoiceConnectorGroupResponseTypeDef: # (1)
...
kwargs: DisassociatePhoneNumbersFromVoiceConnectorGroupRequestRequestTypeDef = { # (1)
"VoiceConnectorGroupId": ...,
"E164PhoneNumbers": ...,
}
parent.disassociate_phone_numbers_from_voice_connector_group(**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-voice").generate_presigned_url
method.
boto3 documentation
def generate_presigned_url(
self,
ClientMethod: str,
Params: Mapping[str, Any] = ...,
ExpiresIn: int = 3600,
HttpMethod: str = ...,
) -> str:
...
get_global_settings
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_global_settings
method.
boto3 documentation
get_phone_number
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_phone_number
method.
boto3 documentation
def get_phone_number(
self,
*,
PhoneNumberId: str,
) -> GetPhoneNumberResponseTypeDef: # (1)
...
kwargs: GetPhoneNumberRequestRequestTypeDef = { # (1)
"PhoneNumberId": ...,
}
parent.get_phone_number(**kwargs)
get_phone_number_order
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_phone_number_order
method.
boto3 documentation
def get_phone_number_order(
self,
*,
PhoneNumberOrderId: str,
) -> GetPhoneNumberOrderResponseTypeDef: # (1)
...
kwargs: GetPhoneNumberOrderRequestRequestTypeDef = { # (1)
"PhoneNumberOrderId": ...,
}
parent.get_phone_number_order(**kwargs)
get_phone_number_settings
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_phone_number_settings
method.
boto3 documentation
def get_phone_number_settings(
self,
) -> GetPhoneNumberSettingsResponseTypeDef: # (1)
...
get_proxy_session
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_proxy_session
method.
boto3 documentation
def get_proxy_session(
self,
*,
VoiceConnectorId: str,
ProxySessionId: str,
) -> GetProxySessionResponseTypeDef: # (1)
...
kwargs: GetProxySessionRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
"ProxySessionId": ...,
}
parent.get_proxy_session(**kwargs)
get_sip_media_application
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_sip_media_application
method.
boto3 documentation
def get_sip_media_application(
self,
*,
SipMediaApplicationId: str,
) -> GetSipMediaApplicationResponseTypeDef: # (1)
...
kwargs: GetSipMediaApplicationRequestRequestTypeDef = { # (1)
"SipMediaApplicationId": ...,
}
parent.get_sip_media_application(**kwargs)
get_sip_media_application_alexa_skill_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_sip_media_application_alexa_skill_configuration
method.
boto3 documentation
def get_sip_media_application_alexa_skill_configuration(
self,
*,
SipMediaApplicationId: str,
) -> GetSipMediaApplicationAlexaSkillConfigurationResponseTypeDef: # (1)
...
kwargs: GetSipMediaApplicationAlexaSkillConfigurationRequestRequestTypeDef = { # (1)
"SipMediaApplicationId": ...,
}
parent.get_sip_media_application_alexa_skill_configuration(**kwargs)
get_sip_media_application_logging_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_sip_media_application_logging_configuration
method.
boto3 documentation
def get_sip_media_application_logging_configuration(
self,
*,
SipMediaApplicationId: str,
) -> GetSipMediaApplicationLoggingConfigurationResponseTypeDef: # (1)
...
kwargs: GetSipMediaApplicationLoggingConfigurationRequestRequestTypeDef = { # (1)
"SipMediaApplicationId": ...,
}
parent.get_sip_media_application_logging_configuration(**kwargs)
get_sip_rule
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_sip_rule
method.
boto3 documentation
def get_sip_rule(
self,
*,
SipRuleId: str,
) -> GetSipRuleResponseTypeDef: # (1)
...
kwargs: GetSipRuleRequestRequestTypeDef = { # (1)
"SipRuleId": ...,
}
parent.get_sip_rule(**kwargs)
get_voice_connector
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector
method.
boto3 documentation
def get_voice_connector(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector(**kwargs)
get_voice_connector_emergency_calling_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_emergency_calling_configuration
method.
boto3 documentation
def get_voice_connector_emergency_calling_configuration(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorEmergencyCallingConfigurationResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_emergency_calling_configuration(**kwargs)
get_voice_connector_group
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_group
method.
boto3 documentation
def get_voice_connector_group(
self,
*,
VoiceConnectorGroupId: str,
) -> GetVoiceConnectorGroupResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorGroupRequestRequestTypeDef = { # (1)
"VoiceConnectorGroupId": ...,
}
parent.get_voice_connector_group(**kwargs)
get_voice_connector_logging_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_logging_configuration
method.
boto3 documentation
def get_voice_connector_logging_configuration(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorLoggingConfigurationResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorLoggingConfigurationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_logging_configuration(**kwargs)
get_voice_connector_origination
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_origination
method.
boto3 documentation
def get_voice_connector_origination(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorOriginationResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorOriginationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_origination(**kwargs)
get_voice_connector_proxy
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_proxy
method.
boto3 documentation
def get_voice_connector_proxy(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorProxyResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorProxyRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_proxy(**kwargs)
get_voice_connector_streaming_configuration
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_streaming_configuration
method.
boto3 documentation
def get_voice_connector_streaming_configuration(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorStreamingConfigurationResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorStreamingConfigurationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_streaming_configuration(**kwargs)
get_voice_connector_termination
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_termination
method.
boto3 documentation
def get_voice_connector_termination(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorTerminationResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorTerminationRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_termination(**kwargs)
get_voice_connector_termination_health
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").get_voice_connector_termination_health
method.
boto3 documentation
def get_voice_connector_termination_health(
self,
*,
VoiceConnectorId: str,
) -> GetVoiceConnectorTerminationHealthResponseTypeDef: # (1)
...
kwargs: GetVoiceConnectorTerminationHealthRequestRequestTypeDef = { # (1)
"VoiceConnectorId": ...,
}
parent.get_voice_connector_termination_health(**kwargs)
list_available_voice_connector_regions
See also: AWS API Documentation.
Type annotations and code completion for boto3.client("chime-sdk-voice").list_available_voice_connector_regions
method.