Struct aws_sdk_chime::types::StreamingConfiguration
source · #[non_exhaustive]pub struct StreamingConfiguration { /* private fields */ }Expand description
The streaming configuration associated with an Amazon Chime Voice Connector. Specifies whether media streaming is enabled for sending to Amazon Kinesis, and shows the retention period for the Amazon Kinesis data, in hours.
Implementations§
source§impl StreamingConfiguration
impl StreamingConfiguration
sourcepub fn data_retention_in_hours(&self) -> Option<i32>
pub fn data_retention_in_hours(&self) -> Option<i32>
The retention period, in hours, for the Amazon Kinesis data.
sourcepub fn disabled(&self) -> Option<bool>
pub fn disabled(&self) -> Option<bool>
When true, media streaming to Amazon Kinesis is turned off.
sourcepub fn streaming_notification_targets(
&self
) -> Option<&[StreamingNotificationTarget]>
pub fn streaming_notification_targets( &self ) -> Option<&[StreamingNotificationTarget]>
The streaming notification targets.
source§impl StreamingConfiguration
impl StreamingConfiguration
sourcepub fn builder() -> StreamingConfigurationBuilder
pub fn builder() -> StreamingConfigurationBuilder
Creates a new builder-style object to manufacture StreamingConfiguration.
Trait Implementations§
source§impl Clone for StreamingConfiguration
impl Clone for StreamingConfiguration
source§fn clone(&self) -> StreamingConfiguration
fn clone(&self) -> StreamingConfiguration
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 StreamingConfiguration
impl Debug for StreamingConfiguration
source§impl PartialEq<StreamingConfiguration> for StreamingConfiguration
impl PartialEq<StreamingConfiguration> for StreamingConfiguration
source§fn eq(&self, other: &StreamingConfiguration) -> bool
fn eq(&self, other: &StreamingConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.