Struct aws_sdk_connect::types::MediaPlacement
source · #[non_exhaustive]pub struct MediaPlacement {
pub audio_host_url: Option<String>,
pub audio_fallback_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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
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§
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 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.
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
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 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
This method tests for
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.