#[non_exhaustive]pub struct UpdateProgramInputBuilder { /* private fields */ }
Expand description
A builder for UpdateProgramInput
.
Implementations§
source§impl UpdateProgramInputBuilder
impl UpdateProgramInputBuilder
sourcepub fn ad_breaks(self, input: AdBreak) -> Self
pub fn ad_breaks(self, input: AdBreak) -> Self
Appends an item to ad_breaks
.
To override the contents of this collection use set_ad_breaks
.
The ad break configuration settings.
sourcepub fn set_ad_breaks(self, input: Option<Vec<AdBreak>>) -> Self
pub fn set_ad_breaks(self, input: Option<Vec<AdBreak>>) -> Self
The ad break configuration settings.
sourcepub fn get_ad_breaks(&self) -> &Option<Vec<AdBreak>>
pub fn get_ad_breaks(&self) -> &Option<Vec<AdBreak>>
The ad break configuration settings.
sourcepub fn channel_name(self, input: impl Into<String>) -> Self
pub fn channel_name(self, input: impl Into<String>) -> Self
The name of the channel for this Program.
This field is required.sourcepub fn set_channel_name(self, input: Option<String>) -> Self
pub fn set_channel_name(self, input: Option<String>) -> Self
The name of the channel for this Program.
sourcepub fn get_channel_name(&self) -> &Option<String>
pub fn get_channel_name(&self) -> &Option<String>
The name of the channel for this Program.
sourcepub fn program_name(self, input: impl Into<String>) -> Self
pub fn program_name(self, input: impl Into<String>) -> Self
The name of the Program.
This field is required.sourcepub fn set_program_name(self, input: Option<String>) -> Self
pub fn set_program_name(self, input: Option<String>) -> Self
The name of the Program.
sourcepub fn get_program_name(&self) -> &Option<String>
pub fn get_program_name(&self) -> &Option<String>
The name of the Program.
sourcepub fn schedule_configuration(
self,
input: UpdateProgramScheduleConfiguration,
) -> Self
pub fn schedule_configuration( self, input: UpdateProgramScheduleConfiguration, ) -> Self
The schedule configuration settings.
This field is required.sourcepub fn set_schedule_configuration(
self,
input: Option<UpdateProgramScheduleConfiguration>,
) -> Self
pub fn set_schedule_configuration( self, input: Option<UpdateProgramScheduleConfiguration>, ) -> Self
The schedule configuration settings.
sourcepub fn get_schedule_configuration(
&self,
) -> &Option<UpdateProgramScheduleConfiguration>
pub fn get_schedule_configuration( &self, ) -> &Option<UpdateProgramScheduleConfiguration>
The schedule configuration settings.
sourcepub fn audience_media(self, input: AudienceMedia) -> Self
pub fn audience_media(self, input: AudienceMedia) -> Self
Appends an item to audience_media
.
To override the contents of this collection use set_audience_media
.
The list of AudienceMedia defined in program.
sourcepub fn set_audience_media(self, input: Option<Vec<AudienceMedia>>) -> Self
pub fn set_audience_media(self, input: Option<Vec<AudienceMedia>>) -> Self
The list of AudienceMedia defined in program.
sourcepub fn get_audience_media(&self) -> &Option<Vec<AudienceMedia>>
pub fn get_audience_media(&self) -> &Option<Vec<AudienceMedia>>
The list of AudienceMedia defined in program.
sourcepub fn build(self) -> Result<UpdateProgramInput, BuildError>
pub fn build(self) -> Result<UpdateProgramInput, BuildError>
Consumes the builder and constructs a UpdateProgramInput
.
source§impl UpdateProgramInputBuilder
impl UpdateProgramInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateProgramOutput, SdkError<UpdateProgramError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateProgramOutput, SdkError<UpdateProgramError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateProgramInputBuilder
impl Clone for UpdateProgramInputBuilder
source§fn clone(&self) -> UpdateProgramInputBuilder
fn clone(&self) -> UpdateProgramInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProgramInputBuilder
impl Debug for UpdateProgramInputBuilder
source§impl Default for UpdateProgramInputBuilder
impl Default for UpdateProgramInputBuilder
source§fn default() -> UpdateProgramInputBuilder
fn default() -> UpdateProgramInputBuilder
impl StructuralPartialEq for UpdateProgramInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateProgramInputBuilder
impl RefUnwindSafe for UpdateProgramInputBuilder
impl Send for UpdateProgramInputBuilder
impl Sync for UpdateProgramInputBuilder
impl Unpin for UpdateProgramInputBuilder
impl UnwindSafe for UpdateProgramInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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