#[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.
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.
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.
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 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
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 UpdateProgramInputBuilder
impl Debug for UpdateProgramInputBuilder
source§impl Default for UpdateProgramInputBuilder
impl Default for UpdateProgramInputBuilder
source§fn default() -> UpdateProgramInputBuilder
fn default() -> UpdateProgramInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateProgramInputBuilder
impl PartialEq for UpdateProgramInputBuilder
source§fn eq(&self, other: &UpdateProgramInputBuilder) -> bool
fn eq(&self, other: &UpdateProgramInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateProgramInputBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more