Struct aws_sdk_chime::types::MediaCapturePipeline
source · #[non_exhaustive]pub struct MediaCapturePipeline { /* private fields */ }Expand description
A media capture pipeline object consisting of an ID, source type, source ARN, a sink type, a sink ARN, and a configuration object.
Implementations§
source§impl MediaCapturePipeline
impl MediaCapturePipeline
sourcepub fn media_pipeline_id(&self) -> Option<&str>
pub fn media_pipeline_id(&self) -> Option<&str>
The ID of a media capture pipeline.
sourcepub fn source_type(&self) -> Option<&MediaPipelineSourceType>
pub fn source_type(&self) -> Option<&MediaPipelineSourceType>
Source type from which media artifacts are saved. You must use ChimeMeeting.
sourcepub fn source_arn(&self) -> Option<&str>
pub fn source_arn(&self) -> Option<&str>
ARN of the source from which the media artifacts will be saved.
sourcepub fn status(&self) -> Option<&MediaPipelineStatus>
pub fn status(&self) -> Option<&MediaPipelineStatus>
The status of the media capture pipeline.
sourcepub fn sink_type(&self) -> Option<&MediaPipelineSinkType>
pub fn sink_type(&self) -> Option<&MediaPipelineSinkType>
Destination type to which the media artifacts are saved. You must use an S3 Bucket.
sourcepub fn sink_arn(&self) -> Option<&str>
pub fn sink_arn(&self) -> Option<&str>
ARN of the destination to which the media artifacts are saved.
sourcepub fn created_timestamp(&self) -> Option<&DateTime>
pub fn created_timestamp(&self) -> Option<&DateTime>
The time at which the capture pipeline was created, in ISO 8601 format.
sourcepub fn updated_timestamp(&self) -> Option<&DateTime>
pub fn updated_timestamp(&self) -> Option<&DateTime>
The time at which the capture pipeline was updated, in ISO 8601 format.
sourcepub fn chime_sdk_meeting_configuration(
&self
) -> Option<&ChimeSdkMeetingConfiguration>
pub fn chime_sdk_meeting_configuration( &self ) -> Option<&ChimeSdkMeetingConfiguration>
The configuration for a specified media capture pipeline. SourceType must be ChimeSdkMeeting.
source§impl MediaCapturePipeline
impl MediaCapturePipeline
sourcepub fn builder() -> MediaCapturePipelineBuilder
pub fn builder() -> MediaCapturePipelineBuilder
Creates a new builder-style object to manufacture MediaCapturePipeline.
Trait Implementations§
source§impl Clone for MediaCapturePipeline
impl Clone for MediaCapturePipeline
source§fn clone(&self) -> MediaCapturePipeline
fn clone(&self) -> MediaCapturePipeline
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MediaCapturePipeline
impl Debug for MediaCapturePipeline
source§impl PartialEq<MediaCapturePipeline> for MediaCapturePipeline
impl PartialEq<MediaCapturePipeline> for MediaCapturePipeline
source§fn eq(&self, other: &MediaCapturePipeline) -> bool
fn eq(&self, other: &MediaCapturePipeline) -> bool
self and other values to be equal, and is used
by ==.