Struct aws_sdk_chime::types::VoiceConnectorItem
source · #[non_exhaustive]pub struct VoiceConnectorItem {
pub voice_connector_id: String,
pub priority: i32,
}Expand description
For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3 VoiceConnectorItems per Amazon Chime Voice Connector group.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.voice_connector_id: StringThe Amazon Chime Voice Connector ID.
priority: i32The priority associated with the Amazon Chime Voice Connector, with 1 being the highest priority. Higher priority Amazon Chime Voice Connectors are attempted first.
Implementations§
source§impl VoiceConnectorItem
impl VoiceConnectorItem
sourcepub fn builder() -> VoiceConnectorItemBuilder
pub fn builder() -> VoiceConnectorItemBuilder
Creates a new builder-style object to manufacture VoiceConnectorItem.
Trait Implementations§
source§impl Clone for VoiceConnectorItem
impl Clone for VoiceConnectorItem
source§fn clone(&self) -> VoiceConnectorItem
fn clone(&self) -> VoiceConnectorItem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for VoiceConnectorItem
impl Debug for VoiceConnectorItem
source§impl PartialEq for VoiceConnectorItem
impl PartialEq for VoiceConnectorItem
source§fn eq(&self, other: &VoiceConnectorItem) -> bool
fn eq(&self, other: &VoiceConnectorItem) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VoiceConnectorItem
Auto Trait Implementations§
impl RefUnwindSafe for VoiceConnectorItem
impl Send for VoiceConnectorItem
impl Sync for VoiceConnectorItem
impl Unpin for VoiceConnectorItem
impl UnwindSafe for VoiceConnectorItem
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.