#[non_exhaustive]pub struct DeleteProgramInputBuilder { /* private fields */ }Expand description
A builder for DeleteProgramInput.
Implementations§
source§impl DeleteProgramInputBuilder
impl DeleteProgramInputBuilder
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.
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.
sourcepub fn get_channel_name(&self) -> &Option<String>
pub fn get_channel_name(&self) -> &Option<String>
The name of the channel.
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 build(self) -> Result<DeleteProgramInput, BuildError>
pub fn build(self) -> Result<DeleteProgramInput, BuildError>
Consumes the builder and constructs a DeleteProgramInput.
source§impl DeleteProgramInputBuilder
impl DeleteProgramInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DeleteProgramOutput, SdkError<DeleteProgramError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DeleteProgramOutput, SdkError<DeleteProgramError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DeleteProgramInputBuilder
impl Clone for DeleteProgramInputBuilder
source§fn clone(&self) -> DeleteProgramInputBuilder
fn clone(&self) -> DeleteProgramInputBuilder
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 DeleteProgramInputBuilder
impl Debug for DeleteProgramInputBuilder
source§impl Default for DeleteProgramInputBuilder
impl Default for DeleteProgramInputBuilder
source§fn default() -> DeleteProgramInputBuilder
fn default() -> DeleteProgramInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeleteProgramInputBuilder
impl PartialEq for DeleteProgramInputBuilder
source§fn eq(&self, other: &DeleteProgramInputBuilder) -> bool
fn eq(&self, other: &DeleteProgramInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteProgramInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteProgramInputBuilder
impl Send for DeleteProgramInputBuilder
impl Sync for DeleteProgramInputBuilder
impl Unpin for DeleteProgramInputBuilder
impl UnwindSafe for DeleteProgramInputBuilder
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