[][src]Struct rusoto_chime::StreamingConfiguration

pub struct StreamingConfiguration {
    pub data_retention_in_hours: i64,
    pub disabled: Option<bool>,
    pub streaming_notification_targets: Option<Vec<StreamingNotificationTarget>>,
}

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.

Fields

data_retention_in_hours: i64

The retention period, in hours, for the Amazon Kinesis data.

disabled: Option<bool>

When true, media streaming to Amazon Kinesis is turned off.

streaming_notification_targets: Option<Vec<StreamingNotificationTarget>>

The streaming notification targets.

Trait Implementations

impl Clone for StreamingConfiguration[src]

impl Debug for StreamingConfiguration[src]

impl Default for StreamingConfiguration[src]

impl<'de> Deserialize<'de> for StreamingConfiguration[src]

impl PartialEq<StreamingConfiguration> for StreamingConfiguration[src]

impl Serialize for StreamingConfiguration[src]

impl StructuralPartialEq for StreamingConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.