ChimeSDKVoice / Client / update_sip_rule

update_sip_rule#

ChimeSDKVoice.Client.update_sip_rule(**kwargs)#

Updates the details of the specified SIP rule.

See also: AWS API Documentation

Request Syntax

response = client.update_sip_rule(
    SipRuleId='string',
    Name='string',
    Disabled=True|False,
    TargetApplications=[
        {
            'SipMediaApplicationId': 'string',
            'Priority': 123,
            'AwsRegion': 'string'
        },
    ]
)
Parameters:
  • SipRuleId (string) –

    [REQUIRED]

    The SIP rule ID.

  • Name (string) –

    [REQUIRED]

    The new name for the specified SIP rule.

  • Disabled (boolean) – The new value that indicates whether the rule is disabled.

  • TargetApplications (list) –

    The new list of target applications.

    • (dict) –

      A target SIP media application and other details, such as priority and AWS Region, to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.

      • SipMediaApplicationId (string) –

        The ID of a rule’s target SIP media application.

      • Priority (integer) –

        The priority setting of a rule’s target SIP media application.

      • AwsRegion (string) –

        The AWS Region of a rule’s target SIP media application.

Return type:

dict

Returns:

Response Syntax

{
    'SipRule': {
        'SipRuleId': 'string',
        'Name': 'string',
        'Disabled': True|False,
        'TriggerType': 'ToPhoneNumber'|'RequestUriHostname',
        'TriggerValue': 'string',
        'TargetApplications': [
            {
                'SipMediaApplicationId': 'string',
                'Priority': 123,
                'AwsRegion': 'string'
            },
        ],
        'CreatedTimestamp': datetime(2015, 1, 1),
        'UpdatedTimestamp': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) –

    • SipRule (dict) –

      The updated SIP rule details.

      • SipRuleId (string) –

        A SIP rule’s ID.

      • Name (string) –

        A SIP rule’s name.

      • Disabled (boolean) –

        Indicates whether the SIP rule is enabled or disabled. You must disable a rule before you can delete it.

      • TriggerType (string) –

        The type of trigger set for a SIP rule, either a phone number or a URI request host name.

      • TriggerValue (string) –

        The value set for a SIP rule’s trigger type. Either a phone number or a URI hostname.

      • TargetApplications (list) –

        The target SIP media application and other details, such as priority and AWS Region, to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.

        • (dict) –

          A target SIP media application and other details, such as priority and AWS Region, to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.

          • SipMediaApplicationId (string) –

            The ID of a rule’s target SIP media application.

          • Priority (integer) –

            The priority setting of a rule’s target SIP media application.

          • AwsRegion (string) –

            The AWS Region of a rule’s target SIP media application.

      • CreatedTimestamp (datetime) –

        The time at which the SIP rule was created, in ISO 8601 format.

      • UpdatedTimestamp (datetime) –

        The time at which the SIP rule was updated, in ISO 8601 format.

Exceptions

  • ChimeSDKVoice.Client.exceptions.UnauthorizedClientException

  • ChimeSDKVoice.Client.exceptions.NotFoundException

  • ChimeSDKVoice.Client.exceptions.ForbiddenException

  • ChimeSDKVoice.Client.exceptions.BadRequestException

  • ChimeSDKVoice.Client.exceptions.ConflictException

  • ChimeSDKVoice.Client.exceptions.ThrottledClientException

  • ChimeSDKVoice.Client.exceptions.ResourceLimitExceededException

  • ChimeSDKVoice.Client.exceptions.ServiceUnavailableException

  • ChimeSDKVoice.Client.exceptions.ServiceFailureException