Struct aws_sdk_chime::input::CreateSipRuleInput
source · [−]#[non_exhaustive]pub struct CreateSipRuleInput { /* private fields */ }Implementations
sourceimpl CreateSipRuleInput
impl CreateSipRuleInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSipRule, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSipRule, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateSipRule>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSipRuleInput.
sourceimpl CreateSipRuleInput
impl CreateSipRuleInput
sourcepub fn trigger_type(&self) -> Option<&SipRuleTriggerType>
pub fn trigger_type(&self) -> Option<&SipRuleTriggerType>
The type of trigger assigned to the SIP rule in TriggerValue, currently RequestUriHostname or ToPhoneNumber.
sourcepub fn trigger_value(&self) -> Option<&str>
pub fn trigger_value(&self) -> Option<&str>
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) -> Option<bool>
pub fn disabled(&self) -> Option<bool>
Enables or disables a rule. You must disable rules before you can delete them.
sourcepub fn target_applications(&self) -> Option<&[SipRuleTargetApplication]>
pub fn target_applications(&self) -> Option<&[SipRuleTargetApplication]>
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 CreateSipRuleInput
impl Clone for CreateSipRuleInput
sourcefn clone(&self) -> CreateSipRuleInput
fn clone(&self) -> CreateSipRuleInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more