pub struct Webhook {
pub branch_name: String,
pub create_time: f64,
pub description: String,
pub update_time: f64,
pub webhook_arn: String,
pub webhook_id: String,
pub webhook_url: String,
}
Expand description
Describes a webhook that connects repository events to an Amplify app.
Fields§
§branch_name: String
The name for a branch that is part of an Amplify app.
create_time: f64
The create date and time for a webhook.
description: String
The description for a webhook.
update_time: f64
Updates the date and time for a webhook.
webhook_arn: String
The Amazon Resource Name (ARN) for the webhook.
webhook_id: String
The ID of the webhook.
webhook_url: String
The URL of the webhook.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Webhook
impl<'de> Deserialize<'de> for Webhook
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Webhook
Auto Trait Implementations§
impl Freeze for Webhook
impl RefUnwindSafe for Webhook
impl Send for Webhook
impl Sync for Webhook
impl Unpin for Webhook
impl UnwindSafe for Webhook
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