Struct aws_sdk_chime::client::fluent_builders::CreateSipRule
source · [−]pub struct CreateSipRule { /* private fields */ }Expand description
Fluent builder constructing a request to CreateSipRule.
Creates a SIP rule which can be used to run a SIP media application as a target for a specific trigger type.
Implementations
sourceimpl CreateSipRule
impl CreateSipRule
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateSipRule, AwsResponseRetryClassifier>, SdkError<CreateSipRuleError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateSipRule, AwsResponseRetryClassifier>, SdkError<CreateSipRuleError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateSipRuleOutput, SdkError<CreateSipRuleError>>
pub async fn send(
self
) -> Result<CreateSipRuleOutput, SdkError<CreateSipRuleError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn trigger_type(self, input: SipRuleTriggerType) -> Self
pub fn trigger_type(self, input: SipRuleTriggerType) -> Self
The type of trigger assigned to the SIP rule in TriggerValue, currently RequestUriHostname or ToPhoneNumber.
sourcepub fn set_trigger_type(self, input: Option<SipRuleTriggerType>) -> Self
pub fn set_trigger_type(self, input: Option<SipRuleTriggerType>) -> Self
The type of trigger assigned to the SIP rule in TriggerValue, currently RequestUriHostname or ToPhoneNumber.
sourcepub fn trigger_value(self, input: impl Into<String>) -> Self
pub fn trigger_value(self, input: impl Into<String>) -> Self
If TriggerType is RequestUriHostname, the value can be the outbound host name of an Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber, the value can be a customer-owned phone number in the E164 format. The SipMediaApplication specified in the SipRule is triggered if the request URI in an incoming SIP request matches the RequestUriHostname, or if the To header in the incoming SIP request matches the ToPhoneNumber value.
sourcepub fn set_trigger_value(self, input: Option<String>) -> Self
pub fn set_trigger_value(self, input: Option<String>) -> Self
If TriggerType is RequestUriHostname, the value can be the outbound host name of an Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber, the value can be a customer-owned phone number in the E164 format. The SipMediaApplication specified in the SipRule is triggered if the request URI in an incoming SIP request matches the RequestUriHostname, or if the To header in the incoming SIP request matches the ToPhoneNumber value.
sourcepub fn disabled(self, input: bool) -> Self
pub fn disabled(self, input: bool) -> Self
Enables or disables a rule. You must disable rules before you can delete them.
sourcepub fn set_disabled(self, input: Option<bool>) -> Self
pub fn set_disabled(self, input: Option<bool>) -> Self
Enables or disables a rule. You must disable rules before you can delete them.
sourcepub fn target_applications(self, input: SipRuleTargetApplication) -> Self
pub fn target_applications(self, input: SipRuleTargetApplication) -> Self
Appends an item to TargetApplications.
To override the contents of this collection use set_target_applications.
List of SIP media applications with priority and AWS Region. Only one SIP application per AWS Region can be used.
sourcepub fn set_target_applications(
self,
input: Option<Vec<SipRuleTargetApplication>>
) -> Self
pub fn set_target_applications(
self,
input: Option<Vec<SipRuleTargetApplication>>
) -> Self
List of SIP media applications with priority and AWS Region. Only one SIP application per AWS Region can be used.
Trait Implementations
sourceimpl Clone for CreateSipRule
impl Clone for CreateSipRule
sourcefn clone(&self) -> CreateSipRule
fn clone(&self) -> CreateSipRule
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more