Skip to content

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

Usage example
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.

Usage example
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)
Type checking example
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

Method definition
def associate_phone_numbers_with_voice_connector(
    self,
    *,
    VoiceConnectorId: str,
    E164PhoneNumbers: Sequence[str],
    ForceAssociate: bool = ...,
) -> AssociatePhoneNumbersWithVoiceConnectorResponseTypeDef:  # (1)
    ...
  1. See AssociatePhoneNumbersWithVoiceConnectorResponseTypeDef
Usage example with kwargs
kwargs: AssociatePhoneNumbersWithVoiceConnectorRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "E164PhoneNumbers": ...,
}

parent.associate_phone_numbers_with_voice_connector(**kwargs)
  1. See AssociatePhoneNumbersWithVoiceConnectorRequestRequestTypeDef

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

Method definition
def associate_phone_numbers_with_voice_connector_group(
    self,
    *,
    VoiceConnectorGroupId: str,
    E164PhoneNumbers: Sequence[str],
    ForceAssociate: bool = ...,
) -> AssociatePhoneNumbersWithVoiceConnectorGroupResponseTypeDef:  # (1)
    ...
  1. See AssociatePhoneNumbersWithVoiceConnectorGroupResponseTypeDef
Usage example with kwargs
kwargs: AssociatePhoneNumbersWithVoiceConnectorGroupRequestRequestTypeDef = {  # (1)
    "VoiceConnectorGroupId": ...,
    "E164PhoneNumbers": ...,
}

parent.associate_phone_numbers_with_voice_connector_group(**kwargs)
  1. See AssociatePhoneNumbersWithVoiceConnectorGroupRequestRequestTypeDef

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

Method definition
def batch_delete_phone_number(
    self,
    *,
    PhoneNumberIds: Sequence[str],
) -> BatchDeletePhoneNumberResponseTypeDef:  # (1)
    ...
  1. See BatchDeletePhoneNumberResponseTypeDef
Usage example with kwargs
kwargs: BatchDeletePhoneNumberRequestRequestTypeDef = {  # (1)
    "PhoneNumberIds": ...,
}

parent.batch_delete_phone_number(**kwargs)
  1. See BatchDeletePhoneNumberRequestRequestTypeDef

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

Method definition
def batch_update_phone_number(
    self,
    *,
    UpdatePhoneNumberRequestItems: Sequence[UpdatePhoneNumberRequestItemTypeDef],  # (1)
) -> BatchUpdatePhoneNumberResponseTypeDef:  # (2)
    ...
  1. See UpdatePhoneNumberRequestItemTypeDef
  2. See BatchUpdatePhoneNumberResponseTypeDef
Usage example with kwargs
kwargs: BatchUpdatePhoneNumberRequestRequestTypeDef = {  # (1)
    "UpdatePhoneNumberRequestItems": ...,
}

parent.batch_update_phone_number(**kwargs)
  1. See BatchUpdatePhoneNumberRequestRequestTypeDef

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

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-voice").close method. boto3 documentation

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

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

Method definition
def create_phone_number_order(
    self,
    *,
    ProductType: PhoneNumberProductTypeType,  # (1)
    E164PhoneNumbers: Sequence[str],
) -> CreatePhoneNumberOrderResponseTypeDef:  # (2)
    ...
  1. See PhoneNumberProductTypeType
  2. See CreatePhoneNumberOrderResponseTypeDef
Usage example with kwargs
kwargs: CreatePhoneNumberOrderRequestRequestTypeDef = {  # (1)
    "ProductType": ...,
    "E164PhoneNumbers": ...,
}

parent.create_phone_number_order(**kwargs)
  1. See CreatePhoneNumberOrderRequestRequestTypeDef

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

Method definition
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)
    ...
  1. See CapabilityType
  2. See NumberSelectionBehaviorType
  3. See GeoMatchLevelType
  4. See GeoMatchParamsTypeDef
  5. See CreateProxySessionResponseTypeDef
Usage example with kwargs
kwargs: CreateProxySessionRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "ParticipantPhoneNumbers": ...,
    "Capabilities": ...,
}

parent.create_proxy_session(**kwargs)
  1. See CreateProxySessionRequestRequestTypeDef

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

Method definition
def create_sip_media_application(
    self,
    *,
    AwsRegion: str,
    Name: str,
    Endpoints: Sequence[SipMediaApplicationEndpointTypeDef],  # (1)
) -> CreateSipMediaApplicationResponseTypeDef:  # (2)
    ...
  1. See SipMediaApplicationEndpointTypeDef
  2. See CreateSipMediaApplicationResponseTypeDef
Usage example with kwargs
kwargs: CreateSipMediaApplicationRequestRequestTypeDef = {  # (1)
    "AwsRegion": ...,
    "Name": ...,
    "Endpoints": ...,
}

parent.create_sip_media_application(**kwargs)
  1. See CreateSipMediaApplicationRequestRequestTypeDef

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

Method definition
def create_sip_media_application_call(
    self,
    *,
    FromPhoneNumber: str,
    ToPhoneNumber: str,
    SipMediaApplicationId: str,
    SipHeaders: Mapping[str, str] = ...,
    ArgumentsMap: Mapping[str, str] = ...,
) -> CreateSipMediaApplicationCallResponseTypeDef:  # (1)
    ...
  1. See CreateSipMediaApplicationCallResponseTypeDef
Usage example with kwargs
kwargs: CreateSipMediaApplicationCallRequestRequestTypeDef = {  # (1)
    "FromPhoneNumber": ...,
    "ToPhoneNumber": ...,
    "SipMediaApplicationId": ...,
}

parent.create_sip_media_application_call(**kwargs)
  1. See CreateSipMediaApplicationCallRequestRequestTypeDef

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

Method definition
def create_sip_rule(
    self,
    *,
    Name: str,
    TriggerType: SipRuleTriggerTypeType,  # (1)
    TriggerValue: str,
    Disabled: bool = ...,
    TargetApplications: Sequence[SipRuleTargetApplicationTypeDef] = ...,  # (2)
) -> CreateSipRuleResponseTypeDef:  # (3)
    ...
  1. See SipRuleTriggerTypeType
  2. See SipRuleTargetApplicationTypeDef
  3. See CreateSipRuleResponseTypeDef
Usage example with kwargs
kwargs: CreateSipRuleRequestRequestTypeDef = {  # (1)
    "Name": ...,
    "TriggerType": ...,
    "TriggerValue": ...,
}

parent.create_sip_rule(**kwargs)
  1. See CreateSipRuleRequestRequestTypeDef

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

Method definition
def create_voice_connector(
    self,
    *,
    Name: str,
    RequireEncryption: bool,
    AwsRegion: VoiceConnectorAwsRegionType = ...,  # (1)
) -> CreateVoiceConnectorResponseTypeDef:  # (2)
    ...
  1. See VoiceConnectorAwsRegionType
  2. See CreateVoiceConnectorResponseTypeDef
Usage example with kwargs
kwargs: CreateVoiceConnectorRequestRequestTypeDef = {  # (1)
    "Name": ...,
    "RequireEncryption": ...,
}

parent.create_voice_connector(**kwargs)
  1. See CreateVoiceConnectorRequestRequestTypeDef

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

Method definition
def create_voice_connector_group(
    self,
    *,
    Name: str,
    VoiceConnectorItems: Sequence[VoiceConnectorItemTypeDef] = ...,  # (1)
) -> CreateVoiceConnectorGroupResponseTypeDef:  # (2)
    ...
  1. See VoiceConnectorItemTypeDef
  2. See CreateVoiceConnectorGroupResponseTypeDef
Usage example with kwargs
kwargs: CreateVoiceConnectorGroupRequestRequestTypeDef = {  # (1)
    "Name": ...,
}

parent.create_voice_connector_group(**kwargs)
  1. See CreateVoiceConnectorGroupRequestRequestTypeDef

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

Method definition
def delete_phone_number(
    self,
    *,
    PhoneNumberId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeletePhoneNumberRequestRequestTypeDef = {  # (1)
    "PhoneNumberId": ...,
}

parent.delete_phone_number(**kwargs)
  1. See DeletePhoneNumberRequestRequestTypeDef

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

Method definition
def delete_proxy_session(
    self,
    *,
    VoiceConnectorId: str,
    ProxySessionId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteProxySessionRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "ProxySessionId": ...,
}

parent.delete_proxy_session(**kwargs)
  1. See DeleteProxySessionRequestRequestTypeDef

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

Method definition
def delete_sip_media_application(
    self,
    *,
    SipMediaApplicationId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteSipMediaApplicationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.delete_sip_media_application(**kwargs)
  1. See DeleteSipMediaApplicationRequestRequestTypeDef

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

Method definition
def delete_sip_rule(
    self,
    *,
    SipRuleId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteSipRuleRequestRequestTypeDef = {  # (1)
    "SipRuleId": ...,
}

parent.delete_sip_rule(**kwargs)
  1. See DeleteSipRuleRequestRequestTypeDef

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

Method definition
def delete_voice_connector(
    self,
    *,
    VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.delete_voice_connector(**kwargs)
  1. See DeleteVoiceConnectorRequestRequestTypeDef

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

Method definition
def delete_voice_connector_emergency_calling_configuration(
    self,
    *,
    VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.delete_voice_connector_emergency_calling_configuration(**kwargs)
  1. See DeleteVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef

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

Method definition
def delete_voice_connector_group(
    self,
    *,
    VoiceConnectorGroupId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorGroupRequestRequestTypeDef = {  # (1)
    "VoiceConnectorGroupId": ...,
}

parent.delete_voice_connector_group(**kwargs)
  1. See DeleteVoiceConnectorGroupRequestRequestTypeDef

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

Method definition
def delete_voice_connector_origination(
    self,
    *,
    VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorOriginationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.delete_voice_connector_origination(**kwargs)
  1. See DeleteVoiceConnectorOriginationRequestRequestTypeDef

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

Method definition
def delete_voice_connector_proxy(
    self,
    *,
    VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorProxyRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.delete_voice_connector_proxy(**kwargs)
  1. See DeleteVoiceConnectorProxyRequestRequestTypeDef

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

Method definition
def delete_voice_connector_streaming_configuration(
    self,
    *,
    VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorStreamingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.delete_voice_connector_streaming_configuration(**kwargs)
  1. See DeleteVoiceConnectorStreamingConfigurationRequestRequestTypeDef

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

Method definition
def delete_voice_connector_termination(
    self,
    *,
    VoiceConnectorId: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorTerminationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.delete_voice_connector_termination(**kwargs)
  1. See DeleteVoiceConnectorTerminationRequestRequestTypeDef

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

Method definition
def delete_voice_connector_termination_credentials(
    self,
    *,
    VoiceConnectorId: str,
    Usernames: Sequence[str],
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: DeleteVoiceConnectorTerminationCredentialsRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "Usernames": ...,
}

parent.delete_voice_connector_termination_credentials(**kwargs)
  1. See DeleteVoiceConnectorTerminationCredentialsRequestRequestTypeDef

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

Method definition
def disassociate_phone_numbers_from_voice_connector(
    self,
    *,
    VoiceConnectorId: str,
    E164PhoneNumbers: Sequence[str],
) -> DisassociatePhoneNumbersFromVoiceConnectorResponseTypeDef:  # (1)
    ...
  1. See DisassociatePhoneNumbersFromVoiceConnectorResponseTypeDef
Usage example with kwargs
kwargs: DisassociatePhoneNumbersFromVoiceConnectorRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "E164PhoneNumbers": ...,
}

parent.disassociate_phone_numbers_from_voice_connector(**kwargs)
  1. See DisassociatePhoneNumbersFromVoiceConnectorRequestRequestTypeDef

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

Method definition
def disassociate_phone_numbers_from_voice_connector_group(
    self,
    *,
    VoiceConnectorGroupId: str,
    E164PhoneNumbers: Sequence[str],
) -> DisassociatePhoneNumbersFromVoiceConnectorGroupResponseTypeDef:  # (1)
    ...
  1. See DisassociatePhoneNumbersFromVoiceConnectorGroupResponseTypeDef
Usage example with kwargs
kwargs: DisassociatePhoneNumbersFromVoiceConnectorGroupRequestRequestTypeDef = {  # (1)
    "VoiceConnectorGroupId": ...,
    "E164PhoneNumbers": ...,
}

parent.disassociate_phone_numbers_from_voice_connector_group(**kwargs)
  1. See DisassociatePhoneNumbersFromVoiceConnectorGroupRequestRequestTypeDef

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

Method definition
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

Method definition
def get_global_settings(
    self,
) -> GetGlobalSettingsResponseTypeDef:  # (1)
    ...
  1. See GetGlobalSettingsResponseTypeDef

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

Method definition
def get_phone_number(
    self,
    *,
    PhoneNumberId: str,
) -> GetPhoneNumberResponseTypeDef:  # (1)
    ...
  1. See GetPhoneNumberResponseTypeDef
Usage example with kwargs
kwargs: GetPhoneNumberRequestRequestTypeDef = {  # (1)
    "PhoneNumberId": ...,
}

parent.get_phone_number(**kwargs)
  1. See GetPhoneNumberRequestRequestTypeDef

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

Method definition
def get_phone_number_order(
    self,
    *,
    PhoneNumberOrderId: str,
) -> GetPhoneNumberOrderResponseTypeDef:  # (1)
    ...
  1. See GetPhoneNumberOrderResponseTypeDef
Usage example with kwargs
kwargs: GetPhoneNumberOrderRequestRequestTypeDef = {  # (1)
    "PhoneNumberOrderId": ...,
}

parent.get_phone_number_order(**kwargs)
  1. See GetPhoneNumberOrderRequestRequestTypeDef

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

Method definition
def get_phone_number_settings(
    self,
) -> GetPhoneNumberSettingsResponseTypeDef:  # (1)
    ...
  1. See GetPhoneNumberSettingsResponseTypeDef

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

Method definition
def get_proxy_session(
    self,
    *,
    VoiceConnectorId: str,
    ProxySessionId: str,
) -> GetProxySessionResponseTypeDef:  # (1)
    ...
  1. See GetProxySessionResponseTypeDef
Usage example with kwargs
kwargs: GetProxySessionRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "ProxySessionId": ...,
}

parent.get_proxy_session(**kwargs)
  1. See GetProxySessionRequestRequestTypeDef

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

Method definition
def get_sip_media_application(
    self,
    *,
    SipMediaApplicationId: str,
) -> GetSipMediaApplicationResponseTypeDef:  # (1)
    ...
  1. See GetSipMediaApplicationResponseTypeDef
Usage example with kwargs
kwargs: GetSipMediaApplicationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.get_sip_media_application(**kwargs)
  1. See GetSipMediaApplicationRequestRequestTypeDef

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

Method definition
def get_sip_media_application_alexa_skill_configuration(
    self,
    *,
    SipMediaApplicationId: str,
) -> GetSipMediaApplicationAlexaSkillConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetSipMediaApplicationAlexaSkillConfigurationResponseTypeDef
Usage example with kwargs
kwargs: GetSipMediaApplicationAlexaSkillConfigurationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.get_sip_media_application_alexa_skill_configuration(**kwargs)
  1. See GetSipMediaApplicationAlexaSkillConfigurationRequestRequestTypeDef

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

Method definition
def get_sip_media_application_logging_configuration(
    self,
    *,
    SipMediaApplicationId: str,
) -> GetSipMediaApplicationLoggingConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetSipMediaApplicationLoggingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: GetSipMediaApplicationLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.get_sip_media_application_logging_configuration(**kwargs)
  1. See GetSipMediaApplicationLoggingConfigurationRequestRequestTypeDef

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

Method definition
def get_sip_rule(
    self,
    *,
    SipRuleId: str,
) -> GetSipRuleResponseTypeDef:  # (1)
    ...
  1. See GetSipRuleResponseTypeDef
Usage example with kwargs
kwargs: GetSipRuleRequestRequestTypeDef = {  # (1)
    "SipRuleId": ...,
}

parent.get_sip_rule(**kwargs)
  1. See GetSipRuleRequestRequestTypeDef

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

Method definition
def get_voice_connector(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector(**kwargs)
  1. See GetVoiceConnectorRequestRequestTypeDef

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

Method definition
def get_voice_connector_emergency_calling_configuration(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorEmergencyCallingConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorEmergencyCallingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_emergency_calling_configuration(**kwargs)
  1. See GetVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef

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

Method definition
def get_voice_connector_group(
    self,
    *,
    VoiceConnectorGroupId: str,
) -> GetVoiceConnectorGroupResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorGroupResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorGroupRequestRequestTypeDef = {  # (1)
    "VoiceConnectorGroupId": ...,
}

parent.get_voice_connector_group(**kwargs)
  1. See GetVoiceConnectorGroupRequestRequestTypeDef

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

Method definition
def get_voice_connector_logging_configuration(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorLoggingConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorLoggingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_logging_configuration(**kwargs)
  1. See GetVoiceConnectorLoggingConfigurationRequestRequestTypeDef

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

Method definition
def get_voice_connector_origination(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorOriginationResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorOriginationResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorOriginationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_origination(**kwargs)
  1. See GetVoiceConnectorOriginationRequestRequestTypeDef

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

Method definition
def get_voice_connector_proxy(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorProxyResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorProxyResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorProxyRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_proxy(**kwargs)
  1. See GetVoiceConnectorProxyRequestRequestTypeDef

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

Method definition
def get_voice_connector_streaming_configuration(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorStreamingConfigurationResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorStreamingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorStreamingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_streaming_configuration(**kwargs)
  1. See GetVoiceConnectorStreamingConfigurationRequestRequestTypeDef

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

Method definition
def get_voice_connector_termination(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorTerminationResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorTerminationResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorTerminationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_termination(**kwargs)
  1. See GetVoiceConnectorTerminationRequestRequestTypeDef

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

Method definition
def get_voice_connector_termination_health(
    self,
    *,
    VoiceConnectorId: str,
) -> GetVoiceConnectorTerminationHealthResponseTypeDef:  # (1)
    ...
  1. See GetVoiceConnectorTerminationHealthResponseTypeDef
Usage example with kwargs
kwargs: GetVoiceConnectorTerminationHealthRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.get_voice_connector_termination_health(**kwargs)
  1. See GetVoiceConnectorTerminationHealthRequestRequestTypeDef

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. boto3 documentation

Method definition
def list_available_voice_connector_regions(
    self,
) -> ListAvailableVoiceConnectorRegionsResponseTypeDef:  # (1)
    ...
  1. See ListAvailableVoiceConnectorRegionsResponseTypeDef

list_phone_number_orders

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_phone_number_orders method. boto3 documentation

Method definition
def list_phone_number_orders(
    self,
    *,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListPhoneNumberOrdersResponseTypeDef:  # (1)
    ...
  1. See ListPhoneNumberOrdersResponseTypeDef
Usage example with kwargs
kwargs: ListPhoneNumberOrdersRequestRequestTypeDef = {  # (1)
    "NextToken": ...,
}

parent.list_phone_number_orders(**kwargs)
  1. See ListPhoneNumberOrdersRequestRequestTypeDef

list_phone_numbers

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_phone_numbers method. boto3 documentation

Method definition
def list_phone_numbers(
    self,
    *,
    Status: str = ...,
    ProductType: PhoneNumberProductTypeType = ...,  # (1)
    FilterName: PhoneNumberAssociationNameType = ...,  # (2)
    FilterValue: str = ...,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListPhoneNumbersResponseTypeDef:  # (3)
    ...
  1. See PhoneNumberProductTypeType
  2. See PhoneNumberAssociationNameType
  3. See ListPhoneNumbersResponseTypeDef
Usage example with kwargs
kwargs: ListPhoneNumbersRequestRequestTypeDef = {  # (1)
    "Status": ...,
}

parent.list_phone_numbers(**kwargs)
  1. See ListPhoneNumbersRequestRequestTypeDef

list_proxy_sessions

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_proxy_sessions method. boto3 documentation

Method definition
def list_proxy_sessions(
    self,
    *,
    VoiceConnectorId: str,
    Status: ProxySessionStatusType = ...,  # (1)
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListProxySessionsResponseTypeDef:  # (2)
    ...
  1. See ProxySessionStatusType
  2. See ListProxySessionsResponseTypeDef
Usage example with kwargs
kwargs: ListProxySessionsRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.list_proxy_sessions(**kwargs)
  1. See ListProxySessionsRequestRequestTypeDef

list_sip_media_applications

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_sip_media_applications method. boto3 documentation

Method definition
def list_sip_media_applications(
    self,
    *,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListSipMediaApplicationsResponseTypeDef:  # (1)
    ...
  1. See ListSipMediaApplicationsResponseTypeDef
Usage example with kwargs
kwargs: ListSipMediaApplicationsRequestRequestTypeDef = {  # (1)
    "MaxResults": ...,
}

parent.list_sip_media_applications(**kwargs)
  1. See ListSipMediaApplicationsRequestRequestTypeDef

list_sip_rules

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_sip_rules method. boto3 documentation

Method definition
def list_sip_rules(
    self,
    *,
    SipMediaApplicationId: str = ...,
    MaxResults: int = ...,
    NextToken: str = ...,
) -> ListSipRulesResponseTypeDef:  # (1)
    ...
  1. See ListSipRulesResponseTypeDef
Usage example with kwargs
kwargs: ListSipRulesRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.list_sip_rules(**kwargs)
  1. See ListSipRulesRequestRequestTypeDef

list_supported_phone_number_countries

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_supported_phone_number_countries method. boto3 documentation

Method definition
def list_supported_phone_number_countries(
    self,
    *,
    ProductType: PhoneNumberProductTypeType,  # (1)
) -> ListSupportedPhoneNumberCountriesResponseTypeDef:  # (2)
    ...
  1. See PhoneNumberProductTypeType
  2. See ListSupportedPhoneNumberCountriesResponseTypeDef
Usage example with kwargs
kwargs: ListSupportedPhoneNumberCountriesRequestRequestTypeDef = {  # (1)
    "ProductType": ...,
}

parent.list_supported_phone_number_countries(**kwargs)
  1. See ListSupportedPhoneNumberCountriesRequestRequestTypeDef

list_voice_connector_groups

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_voice_connector_groups method. boto3 documentation

Method definition
def list_voice_connector_groups(
    self,
    *,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListVoiceConnectorGroupsResponseTypeDef:  # (1)
    ...
  1. See ListVoiceConnectorGroupsResponseTypeDef
Usage example with kwargs
kwargs: ListVoiceConnectorGroupsRequestRequestTypeDef = {  # (1)
    "NextToken": ...,
}

parent.list_voice_connector_groups(**kwargs)
  1. See ListVoiceConnectorGroupsRequestRequestTypeDef

list_voice_connector_termination_credentials

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_voice_connector_termination_credentials method. boto3 documentation

Method definition
def list_voice_connector_termination_credentials(
    self,
    *,
    VoiceConnectorId: str,
) -> ListVoiceConnectorTerminationCredentialsResponseTypeDef:  # (1)
    ...
  1. See ListVoiceConnectorTerminationCredentialsResponseTypeDef
Usage example with kwargs
kwargs: ListVoiceConnectorTerminationCredentialsRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.list_voice_connector_termination_credentials(**kwargs)
  1. See ListVoiceConnectorTerminationCredentialsRequestRequestTypeDef

list_voice_connectors

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").list_voice_connectors method. boto3 documentation

Method definition
def list_voice_connectors(
    self,
    *,
    NextToken: str = ...,
    MaxResults: int = ...,
) -> ListVoiceConnectorsResponseTypeDef:  # (1)
    ...
  1. See ListVoiceConnectorsResponseTypeDef
Usage example with kwargs
kwargs: ListVoiceConnectorsRequestRequestTypeDef = {  # (1)
    "NextToken": ...,
}

parent.list_voice_connectors(**kwargs)
  1. See ListVoiceConnectorsRequestRequestTypeDef

put_sip_media_application_alexa_skill_configuration

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_sip_media_application_alexa_skill_configuration method. boto3 documentation

Method definition
def put_sip_media_application_alexa_skill_configuration(
    self,
    *,
    SipMediaApplicationId: str,
    SipMediaApplicationAlexaSkillConfiguration: SipMediaApplicationAlexaSkillConfigurationTypeDef = ...,  # (1)
) -> PutSipMediaApplicationAlexaSkillConfigurationResponseTypeDef:  # (2)
    ...
  1. See SipMediaApplicationAlexaSkillConfigurationTypeDef
  2. See PutSipMediaApplicationAlexaSkillConfigurationResponseTypeDef
Usage example with kwargs
kwargs: PutSipMediaApplicationAlexaSkillConfigurationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.put_sip_media_application_alexa_skill_configuration(**kwargs)
  1. See PutSipMediaApplicationAlexaSkillConfigurationRequestRequestTypeDef

put_sip_media_application_logging_configuration

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_sip_media_application_logging_configuration method. boto3 documentation

Method definition
def put_sip_media_application_logging_configuration(
    self,
    *,
    SipMediaApplicationId: str,
    SipMediaApplicationLoggingConfiguration: SipMediaApplicationLoggingConfigurationTypeDef = ...,  # (1)
) -> PutSipMediaApplicationLoggingConfigurationResponseTypeDef:  # (2)
    ...
  1. See SipMediaApplicationLoggingConfigurationTypeDef
  2. See PutSipMediaApplicationLoggingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: PutSipMediaApplicationLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.put_sip_media_application_logging_configuration(**kwargs)
  1. See PutSipMediaApplicationLoggingConfigurationRequestRequestTypeDef

put_voice_connector_emergency_calling_configuration

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_emergency_calling_configuration method. boto3 documentation

Method definition
def put_voice_connector_emergency_calling_configuration(
    self,
    *,
    VoiceConnectorId: str,
    EmergencyCallingConfiguration: EmergencyCallingConfigurationTypeDef,  # (1)
) -> PutVoiceConnectorEmergencyCallingConfigurationResponseTypeDef:  # (2)
    ...
  1. See EmergencyCallingConfigurationTypeDef
  2. See PutVoiceConnectorEmergencyCallingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "EmergencyCallingConfiguration": ...,
}

parent.put_voice_connector_emergency_calling_configuration(**kwargs)
  1. See PutVoiceConnectorEmergencyCallingConfigurationRequestRequestTypeDef

put_voice_connector_logging_configuration

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_logging_configuration method. boto3 documentation

Method definition
def put_voice_connector_logging_configuration(
    self,
    *,
    VoiceConnectorId: str,
    LoggingConfiguration: LoggingConfigurationTypeDef,  # (1)
) -> PutVoiceConnectorLoggingConfigurationResponseTypeDef:  # (2)
    ...
  1. See LoggingConfigurationTypeDef
  2. See PutVoiceConnectorLoggingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorLoggingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "LoggingConfiguration": ...,
}

parent.put_voice_connector_logging_configuration(**kwargs)
  1. See PutVoiceConnectorLoggingConfigurationRequestRequestTypeDef

put_voice_connector_origination

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_origination method. boto3 documentation

Method definition
def put_voice_connector_origination(
    self,
    *,
    VoiceConnectorId: str,
    Origination: OriginationTypeDef,  # (1)
) -> PutVoiceConnectorOriginationResponseTypeDef:  # (2)
    ...
  1. See OriginationTypeDef
  2. See PutVoiceConnectorOriginationResponseTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorOriginationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "Origination": ...,
}

parent.put_voice_connector_origination(**kwargs)
  1. See PutVoiceConnectorOriginationRequestRequestTypeDef

put_voice_connector_proxy

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_proxy method. boto3 documentation

Method definition
def put_voice_connector_proxy(
    self,
    *,
    VoiceConnectorId: str,
    DefaultSessionExpiryMinutes: int,
    PhoneNumberPoolCountries: Sequence[str],
    FallBackPhoneNumber: str = ...,
    Disabled: bool = ...,
) -> PutVoiceConnectorProxyResponseTypeDef:  # (1)
    ...
  1. See PutVoiceConnectorProxyResponseTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorProxyRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "DefaultSessionExpiryMinutes": ...,
    "PhoneNumberPoolCountries": ...,
}

parent.put_voice_connector_proxy(**kwargs)
  1. See PutVoiceConnectorProxyRequestRequestTypeDef

put_voice_connector_streaming_configuration

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_streaming_configuration method. boto3 documentation

Method definition
def put_voice_connector_streaming_configuration(
    self,
    *,
    VoiceConnectorId: str,
    StreamingConfiguration: StreamingConfigurationTypeDef,  # (1)
) -> PutVoiceConnectorStreamingConfigurationResponseTypeDef:  # (2)
    ...
  1. See StreamingConfigurationTypeDef
  2. See PutVoiceConnectorStreamingConfigurationResponseTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorStreamingConfigurationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "StreamingConfiguration": ...,
}

parent.put_voice_connector_streaming_configuration(**kwargs)
  1. See PutVoiceConnectorStreamingConfigurationRequestRequestTypeDef

put_voice_connector_termination

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_termination method. boto3 documentation

Method definition
def put_voice_connector_termination(
    self,
    *,
    VoiceConnectorId: str,
    Termination: TerminationTypeDef,  # (1)
) -> PutVoiceConnectorTerminationResponseTypeDef:  # (2)
    ...
  1. See TerminationTypeDef
  2. See PutVoiceConnectorTerminationResponseTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorTerminationRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "Termination": ...,
}

parent.put_voice_connector_termination(**kwargs)
  1. See PutVoiceConnectorTerminationRequestRequestTypeDef

put_voice_connector_termination_credentials

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").put_voice_connector_termination_credentials method. boto3 documentation

Method definition
def put_voice_connector_termination_credentials(
    self,
    *,
    VoiceConnectorId: str,
    Credentials: Sequence[CredentialTypeDef] = ...,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See CredentialTypeDef
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: PutVoiceConnectorTerminationCredentialsRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
}

parent.put_voice_connector_termination_credentials(**kwargs)
  1. See PutVoiceConnectorTerminationCredentialsRequestRequestTypeDef

restore_phone_number

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").restore_phone_number method. boto3 documentation

Method definition
def restore_phone_number(
    self,
    *,
    PhoneNumberId: str,
) -> RestorePhoneNumberResponseTypeDef:  # (1)
    ...
  1. See RestorePhoneNumberResponseTypeDef
Usage example with kwargs
kwargs: RestorePhoneNumberRequestRequestTypeDef = {  # (1)
    "PhoneNumberId": ...,
}

parent.restore_phone_number(**kwargs)
  1. See RestorePhoneNumberRequestRequestTypeDef

search_available_phone_numbers

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").search_available_phone_numbers method. boto3 documentation

Method definition
def search_available_phone_numbers(
    self,
    *,
    AreaCode: str = ...,
    City: str = ...,
    Country: str = ...,
    State: str = ...,
    TollFreePrefix: str = ...,
    PhoneNumberType: PhoneNumberTypeType = ...,  # (1)
    MaxResults: int = ...,
    NextToken: str = ...,
) -> SearchAvailablePhoneNumbersResponseTypeDef:  # (2)
    ...
  1. See PhoneNumberTypeType
  2. See SearchAvailablePhoneNumbersResponseTypeDef
Usage example with kwargs
kwargs: SearchAvailablePhoneNumbersRequestRequestTypeDef = {  # (1)
    "AreaCode": ...,
}

parent.search_available_phone_numbers(**kwargs)
  1. See SearchAvailablePhoneNumbersRequestRequestTypeDef

update_global_settings

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_global_settings method. boto3 documentation

Method definition
def update_global_settings(
    self,
    *,
    VoiceConnector: VoiceConnectorSettingsTypeDef = ...,  # (1)
) -> EmptyResponseMetadataTypeDef:  # (2)
    ...
  1. See VoiceConnectorSettingsTypeDef
  2. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UpdateGlobalSettingsRequestRequestTypeDef = {  # (1)
    "VoiceConnector": ...,
}

parent.update_global_settings(**kwargs)
  1. See UpdateGlobalSettingsRequestRequestTypeDef

update_phone_number

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_phone_number method. boto3 documentation

Method definition
def update_phone_number(
    self,
    *,
    PhoneNumberId: str,
    ProductType: PhoneNumberProductTypeType = ...,  # (1)
    CallingName: str = ...,
) -> UpdatePhoneNumberResponseTypeDef:  # (2)
    ...
  1. See PhoneNumberProductTypeType
  2. See UpdatePhoneNumberResponseTypeDef
Usage example with kwargs
kwargs: UpdatePhoneNumberRequestRequestTypeDef = {  # (1)
    "PhoneNumberId": ...,
}

parent.update_phone_number(**kwargs)
  1. See UpdatePhoneNumberRequestRequestTypeDef

update_phone_number_settings

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_phone_number_settings method. boto3 documentation

Method definition
def update_phone_number_settings(
    self,
    *,
    CallingName: str,
) -> EmptyResponseMetadataTypeDef:  # (1)
    ...
  1. See EmptyResponseMetadataTypeDef
Usage example with kwargs
kwargs: UpdatePhoneNumberSettingsRequestRequestTypeDef = {  # (1)
    "CallingName": ...,
}

parent.update_phone_number_settings(**kwargs)
  1. See UpdatePhoneNumberSettingsRequestRequestTypeDef

update_proxy_session

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_proxy_session method. boto3 documentation

Method definition
def update_proxy_session(
    self,
    *,
    VoiceConnectorId: str,
    ProxySessionId: str,
    Capabilities: Sequence[CapabilityType],  # (1)
    ExpiryMinutes: int = ...,
) -> UpdateProxySessionResponseTypeDef:  # (2)
    ...
  1. See CapabilityType
  2. See UpdateProxySessionResponseTypeDef
Usage example with kwargs
kwargs: UpdateProxySessionRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "ProxySessionId": ...,
    "Capabilities": ...,
}

parent.update_proxy_session(**kwargs)
  1. See UpdateProxySessionRequestRequestTypeDef

update_sip_media_application

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_sip_media_application method. boto3 documentation

Method definition
def update_sip_media_application(
    self,
    *,
    SipMediaApplicationId: str,
    Name: str = ...,
    Endpoints: Sequence[SipMediaApplicationEndpointTypeDef] = ...,  # (1)
) -> UpdateSipMediaApplicationResponseTypeDef:  # (2)
    ...
  1. See SipMediaApplicationEndpointTypeDef
  2. See UpdateSipMediaApplicationResponseTypeDef
Usage example with kwargs
kwargs: UpdateSipMediaApplicationRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
}

parent.update_sip_media_application(**kwargs)
  1. See UpdateSipMediaApplicationRequestRequestTypeDef

update_sip_media_application_call

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_sip_media_application_call method. boto3 documentation

Method definition
def update_sip_media_application_call(
    self,
    *,
    SipMediaApplicationId: str,
    TransactionId: str,
    Arguments: Mapping[str, str],
) -> UpdateSipMediaApplicationCallResponseTypeDef:  # (1)
    ...
  1. See UpdateSipMediaApplicationCallResponseTypeDef
Usage example with kwargs
kwargs: UpdateSipMediaApplicationCallRequestRequestTypeDef = {  # (1)
    "SipMediaApplicationId": ...,
    "TransactionId": ...,
    "Arguments": ...,
}

parent.update_sip_media_application_call(**kwargs)
  1. See UpdateSipMediaApplicationCallRequestRequestTypeDef

update_sip_rule

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_sip_rule method. boto3 documentation

Method definition
def update_sip_rule(
    self,
    *,
    SipRuleId: str,
    Name: str,
    Disabled: bool = ...,
    TargetApplications: Sequence[SipRuleTargetApplicationTypeDef] = ...,  # (1)
) -> UpdateSipRuleResponseTypeDef:  # (2)
    ...
  1. See SipRuleTargetApplicationTypeDef
  2. See UpdateSipRuleResponseTypeDef
Usage example with kwargs
kwargs: UpdateSipRuleRequestRequestTypeDef = {  # (1)
    "SipRuleId": ...,
    "Name": ...,
}

parent.update_sip_rule(**kwargs)
  1. See UpdateSipRuleRequestRequestTypeDef

update_voice_connector

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_voice_connector method. boto3 documentation

Method definition
def update_voice_connector(
    self,
    *,
    VoiceConnectorId: str,
    Name: str,
    RequireEncryption: bool,
) -> UpdateVoiceConnectorResponseTypeDef:  # (1)
    ...
  1. See UpdateVoiceConnectorResponseTypeDef
Usage example with kwargs
kwargs: UpdateVoiceConnectorRequestRequestTypeDef = {  # (1)
    "VoiceConnectorId": ...,
    "Name": ...,
    "RequireEncryption": ...,
}

parent.update_voice_connector(**kwargs)
  1. See UpdateVoiceConnectorRequestRequestTypeDef

update_voice_connector_group

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").update_voice_connector_group method. boto3 documentation

Method definition
def update_voice_connector_group(
    self,
    *,
    VoiceConnectorGroupId: str,
    Name: str,
    VoiceConnectorItems: Sequence[VoiceConnectorItemTypeDef],  # (1)
) -> UpdateVoiceConnectorGroupResponseTypeDef:  # (2)
    ...
  1. See VoiceConnectorItemTypeDef
  2. See UpdateVoiceConnectorGroupResponseTypeDef
Usage example with kwargs
kwargs: UpdateVoiceConnectorGroupRequestRequestTypeDef = {  # (1)
    "VoiceConnectorGroupId": ...,
    "Name": ...,
    "VoiceConnectorItems": ...,
}

parent.update_voice_connector_group(**kwargs)
  1. See UpdateVoiceConnectorGroupRequestRequestTypeDef

validate_e911_address

See also: AWS API Documentation.

Type annotations and code completion for boto3.client("chime-sdk-voice").validate_e911_address method. boto3 documentation

Method definition
def validate_e911_address(
    self,
    *,
    AwsAccountId: str,
    StreetNumber: str,
    StreetInfo: str,
    City: str,
    State: str,
    Country: str,
    PostalCode: str,
) -> ValidateE911AddressResponseTypeDef:  # (1)
    ...
  1. See ValidateE911AddressResponseTypeDef
Usage example with kwargs
kwargs: ValidateE911AddressRequestRequestTypeDef = {  # (1)
    "AwsAccountId": ...,
    "StreetNumber": ...,
    "StreetInfo": ...,
    "City": ...,
    "State": ...,
    "Country": ...,
    "PostalCode": ...,
}

parent.validate_e911_address(**kwargs)
  1. See ValidateE911AddressRequestRequestTypeDef

get_paginator

Type annotations and code completion for boto3.client("chime-sdk-voice").get_paginator method with overloads.