pub struct CreateProgramFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateProgram.
Creates a program within a channel. For information about programs, see Working with programs in the MediaTailor User Guide.
Implementations§
source§impl CreateProgramFluentBuilder
impl CreateProgramFluentBuilder
sourcepub fn as_input(&self) -> &CreateProgramInputBuilder
pub fn as_input(&self) -> &CreateProgramInputBuilder
Access the CreateProgram as a reference.
sourcepub async fn send(
self
) -> Result<CreateProgramOutput, SdkError<CreateProgramError, HttpResponse>>
pub async fn send( self ) -> Result<CreateProgramOutput, SdkError<CreateProgramError, 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<CreateProgramOutput, CreateProgramError, Self>, SdkError<CreateProgramError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateProgramOutput, CreateProgramError, Self>, SdkError<CreateProgramError>>
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 live_source_name(self, input: impl Into<String>) -> Self
pub fn live_source_name(self, input: impl Into<String>) -> Self
The name of the LiveSource for this Program.
sourcepub fn set_live_source_name(self, input: Option<String>) -> Self
pub fn set_live_source_name(self, input: Option<String>) -> Self
The name of the LiveSource for this Program.
sourcepub fn get_live_source_name(&self) -> &Option<String>
pub fn get_live_source_name(&self) -> &Option<String>
The name of the LiveSource 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: ScheduleConfiguration) -> Self
pub fn schedule_configuration(self, input: ScheduleConfiguration) -> Self
The schedule configuration settings.
sourcepub fn set_schedule_configuration(
self,
input: Option<ScheduleConfiguration>
) -> Self
pub fn set_schedule_configuration( self, input: Option<ScheduleConfiguration> ) -> Self
The schedule configuration settings.
sourcepub fn get_schedule_configuration(&self) -> &Option<ScheduleConfiguration>
pub fn get_schedule_configuration(&self) -> &Option<ScheduleConfiguration>
The schedule configuration settings.
sourcepub fn source_location_name(self, input: impl Into<String>) -> Self
pub fn source_location_name(self, input: impl Into<String>) -> Self
The name of the source location.
sourcepub fn set_source_location_name(self, input: Option<String>) -> Self
pub fn set_source_location_name(self, input: Option<String>) -> Self
The name of the source location.
sourcepub fn get_source_location_name(&self) -> &Option<String>
pub fn get_source_location_name(&self) -> &Option<String>
The name of the source location.
sourcepub fn vod_source_name(self, input: impl Into<String>) -> Self
pub fn vod_source_name(self, input: impl Into<String>) -> Self
The name that's used to refer to a VOD source.
sourcepub fn set_vod_source_name(self, input: Option<String>) -> Self
pub fn set_vod_source_name(self, input: Option<String>) -> Self
The name that's used to refer to a VOD source.
sourcepub fn get_vod_source_name(&self) -> &Option<String>
pub fn get_vod_source_name(&self) -> &Option<String>
The name that's used to refer to a VOD source.
Trait Implementations§
source§impl Clone for CreateProgramFluentBuilder
impl Clone for CreateProgramFluentBuilder
source§fn clone(&self) -> CreateProgramFluentBuilder
fn clone(&self) -> CreateProgramFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more