Struct aws_sdk_chime::types::VoiceConnector
source · #[non_exhaustive]pub struct VoiceConnector {
pub voice_connector_id: Option<String>,
pub aws_region: Option<VoiceConnectorAwsRegion>,
pub name: Option<String>,
pub outbound_host_name: Option<String>,
pub require_encryption: Option<bool>,
pub created_timestamp: Option<DateTime>,
pub updated_timestamp: Option<DateTime>,
pub voice_connector_arn: Option<String>,
}Expand description
The Amazon Chime Voice Connector configuration, including outbound host name and encryption settings.
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_id: Option<String>The Amazon Chime Voice Connector ID.
aws_region: Option<VoiceConnectorAwsRegion>The AWS Region in which the Amazon Chime Voice Connector is created. Default: us-east-1.
name: Option<String>The name of the Amazon Chime Voice Connector.
outbound_host_name: Option<String>The outbound host name for the Amazon Chime Voice Connector.
require_encryption: Option<bool>Designates whether encryption is required for the Amazon Chime Voice Connector.
created_timestamp: Option<DateTime>The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.
updated_timestamp: Option<DateTime>The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.
voice_connector_arn: Option<String>The ARN of the specified Amazon Chime Voice Connector.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VoiceConnector
impl Debug for VoiceConnector
source§impl PartialEq for VoiceConnector
impl PartialEq for VoiceConnector
source§fn eq(&self, other: &VoiceConnector) -> bool
fn eq(&self, other: &VoiceConnector) -> bool
self and other values to be equal, and is used
by ==.