Struct aws_sdk_chime::model::MediaPlacement
source · [−]#[non_exhaustive]pub struct MediaPlacement {
pub audio_host_url: Option<String>,
pub audio_fallback_url: Option<String>,
pub screen_data_url: Option<String>,
pub screen_sharing_url: Option<String>,
pub screen_viewing_url: Option<String>,
pub signaling_url: Option<String>,
pub turn_control_url: Option<String>,
pub event_ingestion_url: Option<String>,
}Expand description
A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.
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.audio_host_url: Option<String>The audio host URL.
audio_fallback_url: Option<String>The audio fallback URL.
screen_data_url: Option<String>The screen data URL.
screen_sharing_url: Option<String>The screen sharing URL.
screen_viewing_url: Option<String>The screen viewing URL.
signaling_url: Option<String>The signaling URL.
turn_control_url: Option<String>The turn control URL.
event_ingestion_url: Option<String>The event ingestion URL to which you send client meeting events.
Implementations
sourceimpl MediaPlacement
impl MediaPlacement
sourcepub fn audio_host_url(&self) -> Option<&str>
pub fn audio_host_url(&self) -> Option<&str>
The audio host URL.
sourcepub fn audio_fallback_url(&self) -> Option<&str>
pub fn audio_fallback_url(&self) -> Option<&str>
The audio fallback URL.
sourcepub fn screen_data_url(&self) -> Option<&str>
pub fn screen_data_url(&self) -> Option<&str>
The screen data URL.
sourcepub fn screen_sharing_url(&self) -> Option<&str>
pub fn screen_sharing_url(&self) -> Option<&str>
The screen sharing URL.
sourcepub fn screen_viewing_url(&self) -> Option<&str>
pub fn screen_viewing_url(&self) -> Option<&str>
The screen viewing URL.
sourcepub fn signaling_url(&self) -> Option<&str>
pub fn signaling_url(&self) -> Option<&str>
The signaling URL.
sourcepub fn turn_control_url(&self) -> Option<&str>
pub fn turn_control_url(&self) -> Option<&str>
The turn control URL.
sourcepub fn event_ingestion_url(&self) -> Option<&str>
pub fn event_ingestion_url(&self) -> Option<&str>
The event ingestion URL to which you send client meeting events.
sourceimpl MediaPlacement
impl MediaPlacement
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MediaPlacement.
Trait Implementations
sourceimpl Clone for MediaPlacement
impl Clone for MediaPlacement
sourcefn clone(&self) -> MediaPlacement
fn clone(&self) -> MediaPlacement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MediaPlacement
impl Debug for MediaPlacement
sourceimpl PartialEq<MediaPlacement> for MediaPlacement
impl PartialEq<MediaPlacement> for MediaPlacement
sourcefn eq(&self, other: &MediaPlacement) -> bool
fn eq(&self, other: &MediaPlacement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MediaPlacement) -> bool
fn ne(&self, other: &MediaPlacement) -> bool
This method tests for !=.
impl StructuralPartialEq for MediaPlacement
Auto Trait Implementations
impl RefUnwindSafe for MediaPlacement
impl Send for MediaPlacement
impl Sync for MediaPlacement
impl Unpin for MediaPlacement
impl UnwindSafe for MediaPlacement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more