#[non_exhaustive]pub struct CreateSipRuleInput {
pub name: Option<String>,
pub trigger_type: Option<SipRuleTriggerType>,
pub trigger_value: Option<String>,
pub disabled: Option<bool>,
pub target_applications: Option<Vec<SipRuleTargetApplication>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the SIP rule.
trigger_type: Option<SipRuleTriggerType>The type of trigger assigned to the SIP rule in TriggerValue, currently RequestUriHostname or ToPhoneNumber.
trigger_value: Option<String>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.
disabled: Option<bool>Enables or disables a rule. You must disable rules before you can delete them.
target_applications: Option<Vec<SipRuleTargetApplication>>List of SIP media applications with priority and AWS Region. Only one SIP application per AWS Region can be used.
Implementations§
source§impl 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) -> &[SipRuleTargetApplication]
pub fn target_applications(&self) -> &[SipRuleTargetApplication]
List of SIP media applications with priority and AWS Region. Only one SIP application per AWS Region can be used.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .target_applications.is_none().
source§impl CreateSipRuleInput
impl CreateSipRuleInput
sourcepub fn builder() -> CreateSipRuleInputBuilder
pub fn builder() -> CreateSipRuleInputBuilder
Creates a new builder-style object to manufacture CreateSipRuleInput.
Trait Implementations§
source§impl Clone for CreateSipRuleInput
impl Clone for CreateSipRuleInput
source§fn clone(&self) -> CreateSipRuleInput
fn clone(&self) -> CreateSipRuleInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateSipRuleInput
impl Debug for CreateSipRuleInput
source§impl PartialEq for CreateSipRuleInput
impl PartialEq for CreateSipRuleInput
source§fn eq(&self, other: &CreateSipRuleInput) -> bool
fn eq(&self, other: &CreateSipRuleInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateSipRuleInput
Auto Trait Implementations§
impl Freeze for CreateSipRuleInput
impl RefUnwindSafe for CreateSipRuleInput
impl Send for CreateSipRuleInput
impl Sync for CreateSipRuleInput
impl Unpin for CreateSipRuleInput
impl UnwindSafe for CreateSipRuleInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more