Struct aws_sdk_chime::types::VoiceConnector
source · #[non_exhaustive]pub struct VoiceConnector { /* private fields */ }Expand description
The Amazon Chime Voice Connector configuration, including outbound host name and encryption settings.
Implementations§
source§impl VoiceConnector
impl VoiceConnector
sourcepub fn voice_connector_id(&self) -> Option<&str>
pub fn voice_connector_id(&self) -> Option<&str>
The Amazon Chime Voice Connector ID.
sourcepub fn aws_region(&self) -> Option<&VoiceConnectorAwsRegion>
pub fn aws_region(&self) -> Option<&VoiceConnectorAwsRegion>
The AWS Region in which the Amazon Chime Voice Connector is created. Default: us-east-1.
sourcepub fn outbound_host_name(&self) -> Option<&str>
pub fn outbound_host_name(&self) -> Option<&str>
The outbound host name for the Amazon Chime Voice Connector.
sourcepub fn require_encryption(&self) -> Option<bool>
pub fn require_encryption(&self) -> Option<bool>
Designates whether encryption is required for the Amazon Chime Voice Connector.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
sourcepub fn updated_timestamp(&self) -> Option<&DateTime>
pub fn updated_timestamp(&self) -> Option<&DateTime>
The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
sourcepub fn voice_connector_arn(&self) -> Option<&str>
pub fn voice_connector_arn(&self) -> Option<&str>
The ARN of the specified Amazon Chime Voice Connector.
source§impl VoiceConnector
impl VoiceConnector
sourcepub fn builder() -> VoiceConnectorBuilder
pub fn builder() -> VoiceConnectorBuilder
Creates a new builder-style object to manufacture VoiceConnector.
Trait Implementations§
source§impl Clone for VoiceConnector
impl Clone for VoiceConnector
source§fn clone(&self) -> VoiceConnector
fn clone(&self) -> VoiceConnector
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 VoiceConnector
impl Debug for VoiceConnector
source§impl PartialEq<VoiceConnector> for VoiceConnector
impl PartialEq<VoiceConnector> for VoiceConnector
source§fn eq(&self, other: &VoiceConnector) -> bool
fn eq(&self, other: &VoiceConnector) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VoiceConnector
Auto Trait Implementations§
impl RefUnwindSafe for VoiceConnector
impl Send for VoiceConnector
impl Sync for VoiceConnector
impl Unpin for VoiceConnector
impl UnwindSafe for VoiceConnector
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