Struct aws_sdk_chime::types::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.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK.
screen_sharing_url: Option<String>The screen sharing URL.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK..
screen_viewing_url: Option<String>The screen viewing URL.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK.
signaling_url: Option<String>The signaling URL.
turn_control_url: Option<String>The turn control URL.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK.
event_ingestion_url: Option<String>The event ingestion URL to which you send client meeting events.
Implementations§
source§impl 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.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK.
sourcepub fn screen_sharing_url(&self) -> Option<&str>
pub fn screen_sharing_url(&self) -> Option<&str>
The screen sharing URL.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK..
sourcepub fn screen_viewing_url(&self) -> Option<&str>
pub fn screen_viewing_url(&self) -> Option<&str>
The screen viewing URL.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK.
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.
This parameter is is no longer supported and no longer used by the Amazon Chime SDK.
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.
source§impl MediaPlacement
impl MediaPlacement
sourcepub fn builder() -> MediaPlacementBuilder
pub fn builder() -> MediaPlacementBuilder
Creates a new builder-style object to manufacture MediaPlacement.
Trait Implementations§
source§impl Clone for MediaPlacement
impl Clone for MediaPlacement
source§fn clone(&self) -> MediaPlacement
fn clone(&self) -> MediaPlacement
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MediaPlacement
impl Debug for MediaPlacement
source§impl PartialEq for MediaPlacement
impl PartialEq for MediaPlacement
source§fn eq(&self, other: &MediaPlacement) -> bool
fn eq(&self, other: &MediaPlacement) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MediaPlacement
Auto Trait Implementations§
impl Freeze for MediaPlacement
impl RefUnwindSafe for MediaPlacement
impl Send for MediaPlacement
impl Sync for MediaPlacement
impl Unpin for MediaPlacement
impl UnwindSafe for MediaPlacement
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more