#[non_exhaustive]pub struct UpdateWebhookInput { /* private fields */ }Expand description
The request structure for the update webhook request.
Implementations§
source§impl UpdateWebhookInput
impl UpdateWebhookInput
sourcepub fn webhook_id(&self) -> Option<&str>
pub fn webhook_id(&self) -> Option<&str>
The unique ID for a webhook.
sourcepub fn branch_name(&self) -> Option<&str>
pub fn branch_name(&self) -> Option<&str>
The name for a branch that is part of an Amplify app.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for a webhook.
source§impl UpdateWebhookInput
impl UpdateWebhookInput
sourcepub fn builder() -> UpdateWebhookInputBuilder
pub fn builder() -> UpdateWebhookInputBuilder
Creates a new builder-style object to manufacture UpdateWebhookInput.
source§impl UpdateWebhookInput
impl UpdateWebhookInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateWebhook, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateWebhook, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateWebhook>
Trait Implementations§
source§impl Clone for UpdateWebhookInput
impl Clone for UpdateWebhookInput
source§fn clone(&self) -> UpdateWebhookInput
fn clone(&self) -> UpdateWebhookInput
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 UpdateWebhookInput
impl Debug for UpdateWebhookInput
source§impl PartialEq<UpdateWebhookInput> for UpdateWebhookInput
impl PartialEq<UpdateWebhookInput> for UpdateWebhookInput
source§fn eq(&self, other: &UpdateWebhookInput) -> bool
fn eq(&self, other: &UpdateWebhookInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateWebhookInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateWebhookInput
impl Send for UpdateWebhookInput
impl Sync for UpdateWebhookInput
impl Unpin for UpdateWebhookInput
impl UnwindSafe for UpdateWebhookInput
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