#[non_exhaustive]pub struct CreateProgramInputBuilder { /* private fields */ }
Expand description
A builder for CreateProgramInput
.
Implementations§
source§impl CreateProgramInputBuilder
impl CreateProgramInputBuilder
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 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.
sourcepub fn build(self) -> Result<CreateProgramInput, BuildError>
pub fn build(self) -> Result<CreateProgramInput, BuildError>
Consumes the builder and constructs a CreateProgramInput
.
source§impl CreateProgramInputBuilder
impl CreateProgramInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateProgramOutput, SdkError<CreateProgramError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateProgramOutput, SdkError<CreateProgramError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateProgramInputBuilder
impl Clone for CreateProgramInputBuilder
source§fn clone(&self) -> CreateProgramInputBuilder
fn clone(&self) -> CreateProgramInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateProgramInputBuilder
impl Debug for CreateProgramInputBuilder
source§impl Default for CreateProgramInputBuilder
impl Default for CreateProgramInputBuilder
source§fn default() -> CreateProgramInputBuilder
fn default() -> CreateProgramInputBuilder
source§impl PartialEq for CreateProgramInputBuilder
impl PartialEq for CreateProgramInputBuilder
source§fn eq(&self, other: &CreateProgramInputBuilder) -> bool
fn eq(&self, other: &CreateProgramInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.