Struct aws_sdk_chime::model::SipRule
source · [−]#[non_exhaustive]pub struct SipRule {
pub sip_rule_id: Option<String>,
pub name: Option<String>,
pub disabled: Option<bool>,
pub trigger_type: Option<SipRuleTriggerType>,
pub trigger_value: Option<String>,
pub target_applications: Option<Vec<SipRuleTargetApplication>>,
pub created_timestamp: Option<DateTime>,
pub updated_timestamp: Option<DateTime>,
}Expand description
The SIP rule details, including name, triggers, and target applications. An AWS account can have multiple SIP rules.
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.sip_rule_id: Option<String>The SIP rule ID.
name: Option<String>The name of the SIP rule.
disabled: Option<bool>Indicates whether the SIP rule is enabled or disabled. You must disable a rule before you can delete it.
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, then the value can be the outbound host name of the Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber, then the value can be a customer-owned phone number in E164 format. SipRule is triggered when a SIP rule requests host name or ToPhoneNumber matches in the incoming SIP request.
target_applications: Option<Vec<SipRuleTargetApplication>>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.
created_timestamp: Option<DateTime>The time at which the SIP rule was created, in ISO 8601 format.
updated_timestamp: Option<DateTime>The time at which the SIP rule was last updated, in ISO 8601 format.
Implementations
sourceimpl SipRule
impl SipRule
sourcepub fn sip_rule_id(&self) -> Option<&str>
pub fn sip_rule_id(&self) -> Option<&str>
The SIP rule ID.
sourcepub fn disabled(&self) -> Option<bool>
pub fn disabled(&self) -> Option<bool>
Indicates whether the SIP rule is enabled or disabled. You must disable a rule before you can delete it.
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, then the value can be the outbound host name of the Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber, then the value can be a customer-owned phone number in E164 format. SipRule is triggered when a SIP rule requests host name or ToPhoneNumber matches in the incoming SIP request.
sourcepub fn target_applications(&self) -> Option<&[SipRuleTargetApplication]>
pub fn target_applications(&self) -> Option<&[SipRuleTargetApplication]>
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.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time at which the SIP rule was created, in ISO 8601 format.
sourcepub fn updated_timestamp(&self) -> Option<&DateTime>
pub fn updated_timestamp(&self) -> Option<&DateTime>
The time at which the SIP rule was last updated, in ISO 8601 format.
Trait Implementations
impl StructuralPartialEq for SipRule
Auto Trait Implementations
impl RefUnwindSafe for SipRule
impl Send for SipRule
impl Sync for SipRule
impl Unpin for SipRule
impl UnwindSafe for SipRule
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more