pub struct CreateWebhookRequest {
pub app_id: String,
pub branch_name: String,
pub description: Option<String>,
}
Expand description
The request structure for the create webhook request.
Fields§
§app_id: String
The unique ID for an Amplify app.
branch_name: String
The name for a branch that is part of an Amplify app.
description: Option<String>
The description for a webhook.
Trait Implementations§
Source§impl Clone for CreateWebhookRequest
impl Clone for CreateWebhookRequest
Source§fn clone(&self) -> CreateWebhookRequest
fn clone(&self) -> CreateWebhookRequest
Returns a duplicate 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 CreateWebhookRequest
impl Debug for CreateWebhookRequest
Source§impl Default for CreateWebhookRequest
impl Default for CreateWebhookRequest
Source§fn default() -> CreateWebhookRequest
fn default() -> CreateWebhookRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateWebhookRequest
impl PartialEq for CreateWebhookRequest
Source§impl Serialize for CreateWebhookRequest
impl Serialize for CreateWebhookRequest
impl StructuralPartialEq for CreateWebhookRequest
Auto Trait Implementations§
impl Freeze for CreateWebhookRequest
impl RefUnwindSafe for CreateWebhookRequest
impl Send for CreateWebhookRequest
impl Sync for CreateWebhookRequest
impl Unpin for CreateWebhookRequest
impl UnwindSafe for CreateWebhookRequest
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