Struct aws_sdk_chime::types::VoiceConnectorGroup
source · #[non_exhaustive]pub struct VoiceConnectorGroup {
pub voice_connector_group_id: Option<String>,
pub name: Option<String>,
pub voice_connector_items: Option<Vec<VoiceConnectorItem>>,
pub created_timestamp: Option<DateTime>,
pub updated_timestamp: Option<DateTime>,
pub voice_connector_group_arn: Option<String>,
}Expand description
The Amazon Chime Voice Connector group configuration, including associated Amazon Chime Voice Connectors. You can include Amazon Chime Voice Connectors from different AWS Regions in your group. This creates a fault tolerant mechanism for fallback in case of availability events.
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.voice_connector_group_id: Option<String>The Amazon Chime Voice Connector group ID.
name: Option<String>The name of the Amazon Chime Voice Connector group.
voice_connector_items: Option<Vec<VoiceConnectorItem>>The Amazon Chime Voice Connectors to which to route inbound calls.
created_timestamp: Option<DateTime>The Amazon Chime Voice Connector group creation time stamp, in ISO 8601 format.
updated_timestamp: Option<DateTime>The updated Amazon Chime Voice Connector group time stamp, in ISO 8601 format.
voice_connector_group_arn: Option<String>The ARN of the specified Amazon Chime Voice Connector group.
Implementations§
source§impl VoiceConnectorGroup
impl VoiceConnectorGroup
sourcepub fn voice_connector_group_id(&self) -> Option<&str>
pub fn voice_connector_group_id(&self) -> Option<&str>
The Amazon Chime Voice Connector group ID.
sourcepub fn voice_connector_items(&self) -> &[VoiceConnectorItem]
pub fn voice_connector_items(&self) -> &[VoiceConnectorItem]
The Amazon Chime Voice Connectors to which to route inbound calls.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .voice_connector_items.is_none().
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The Amazon Chime Voice Connector group creation time stamp, in ISO 8601 format.
sourcepub fn updated_timestamp(&self) -> Option<&DateTime>
pub fn updated_timestamp(&self) -> Option<&DateTime>
The updated Amazon Chime Voice Connector group time stamp, in ISO 8601 format.
sourcepub fn voice_connector_group_arn(&self) -> Option<&str>
pub fn voice_connector_group_arn(&self) -> Option<&str>
The ARN of the specified Amazon Chime Voice Connector group.
source§impl VoiceConnectorGroup
impl VoiceConnectorGroup
sourcepub fn builder() -> VoiceConnectorGroupBuilder
pub fn builder() -> VoiceConnectorGroupBuilder
Creates a new builder-style object to manufacture VoiceConnectorGroup.
Trait Implementations§
source§impl Clone for VoiceConnectorGroup
impl Clone for VoiceConnectorGroup
source§fn clone(&self) -> VoiceConnectorGroup
fn clone(&self) -> VoiceConnectorGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VoiceConnectorGroup
impl Debug for VoiceConnectorGroup
source§impl PartialEq for VoiceConnectorGroup
impl PartialEq for VoiceConnectorGroup
source§fn eq(&self, other: &VoiceConnectorGroup) -> bool
fn eq(&self, other: &VoiceConnectorGroup) -> bool
self and other values to be equal, and is used
by ==.