pub struct UpdateProgramFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateProgram.
Updates a program within a channel.
Implementations§
source§impl UpdateProgramFluentBuilder
impl UpdateProgramFluentBuilder
sourcepub fn as_input(&self) -> &UpdateProgramInputBuilder
pub fn as_input(&self) -> &UpdateProgramInputBuilder
Access the UpdateProgram as a reference.
sourcepub async fn send(
self
) -> Result<UpdateProgramOutput, SdkError<UpdateProgramError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateProgramOutput, SdkError<UpdateProgramError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateProgramOutput, UpdateProgramError, Self>, SdkError<UpdateProgramError>>
pub async fn customize( self ) -> Result<CustomizableOperation<UpdateProgramOutput, UpdateProgramError, Self>, SdkError<UpdateProgramError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn ad_breaks(self, input: AdBreak) -> Self
pub fn ad_breaks(self, input: AdBreak) -> Self
Appends an item to AdBreaks.
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.
Trait Implementations§
source§impl Clone for UpdateProgramFluentBuilder
impl Clone for UpdateProgramFluentBuilder
source§fn clone(&self) -> UpdateProgramFluentBuilder
fn clone(&self) -> UpdateProgramFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more