#[non_exhaustive]pub struct TranscriptSourceSettingBuilder { /* private fields */ }
Expand description
A builder for TranscriptSourceSetting
.
Implementations§
source§impl TranscriptSourceSettingBuilder
impl TranscriptSourceSettingBuilder
sourcepub fn s3_bucket_transcript_source(
self,
input: S3BucketTranscriptSource
) -> Self
pub fn s3_bucket_transcript_source( self, input: S3BucketTranscriptSource ) -> Self
Indicates the setting of the Amazon S3 bucket where the transcript is stored.
sourcepub fn set_s3_bucket_transcript_source(
self,
input: Option<S3BucketTranscriptSource>
) -> Self
pub fn set_s3_bucket_transcript_source( self, input: Option<S3BucketTranscriptSource> ) -> Self
Indicates the setting of the Amazon S3 bucket where the transcript is stored.
sourcepub fn get_s3_bucket_transcript_source(
&self
) -> &Option<S3BucketTranscriptSource>
pub fn get_s3_bucket_transcript_source( &self ) -> &Option<S3BucketTranscriptSource>
Indicates the setting of the Amazon S3 bucket where the transcript is stored.
sourcepub fn build(self) -> TranscriptSourceSetting
pub fn build(self) -> TranscriptSourceSetting
Consumes the builder and constructs a TranscriptSourceSetting
.
Trait Implementations§
source§impl Clone for TranscriptSourceSettingBuilder
impl Clone for TranscriptSourceSettingBuilder
source§fn clone(&self) -> TranscriptSourceSettingBuilder
fn clone(&self) -> TranscriptSourceSettingBuilder
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 Default for TranscriptSourceSettingBuilder
impl Default for TranscriptSourceSettingBuilder
source§fn default() -> TranscriptSourceSettingBuilder
fn default() -> TranscriptSourceSettingBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TranscriptSourceSettingBuilder
impl PartialEq for TranscriptSourceSettingBuilder
source§fn eq(&self, other: &TranscriptSourceSettingBuilder) -> bool
fn eq(&self, other: &TranscriptSourceSettingBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TranscriptSourceSettingBuilder
Auto Trait Implementations§
impl Freeze for TranscriptSourceSettingBuilder
impl RefUnwindSafe for TranscriptSourceSettingBuilder
impl Send for TranscriptSourceSettingBuilder
impl Sync for TranscriptSourceSettingBuilder
impl Unpin for TranscriptSourceSettingBuilder
impl UnwindSafe for TranscriptSourceSettingBuilder
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.