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, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSipRule, AwsErrorRetryPolicy>, 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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CreateSipRuleInput
impl Debug for CreateSipRuleInput
sourceimpl PartialEq<CreateSipRuleInput> for CreateSipRuleInput
impl PartialEq<CreateSipRuleInput> for CreateSipRuleInput
sourcefn eq(&self, other: &CreateSipRuleInput) -> bool
fn eq(&self, other: &CreateSipRuleInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CreateSipRuleInput) -> bool
fn ne(&self, other: &CreateSipRuleInput) -> bool
This method tests for !=.
impl StructuralPartialEq for CreateSipRuleInput
Auto Trait Implementations
impl RefUnwindSafe for CreateSipRuleInput
impl Send for CreateSipRuleInput
impl Sync for CreateSipRuleInput
impl Unpin for CreateSipRuleInput
impl UnwindSafe for CreateSipRuleInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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> 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