Struct aws_sdk_amplify::model::Webhook
source · [−]#[non_exhaustive]pub struct Webhook { /* private fields */ }Expand description
Describes a webhook that connects repository events to an Amplify app.
Implementations
sourceimpl Webhook
impl Webhook
sourcepub fn webhook_arn(&self) -> Option<&str>
pub fn webhook_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the webhook.
sourcepub fn webhook_id(&self) -> Option<&str>
pub fn webhook_id(&self) -> Option<&str>
The ID of the webhook.
sourcepub fn webhook_url(&self) -> Option<&str>
pub fn webhook_url(&self) -> Option<&str>
The URL of the 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.
sourcepub fn create_time(&self) -> Option<&DateTime>
pub fn create_time(&self) -> Option<&DateTime>
The create date and time for a webhook.
sourcepub fn update_time(&self) -> Option<&DateTime>
pub fn update_time(&self) -> Option<&DateTime>
Updates the date and time for a webhook.
Trait Implementations
impl StructuralPartialEq for Webhook
Auto Trait Implementations
impl RefUnwindSafe for Webhook
impl Send for Webhook
impl Sync for Webhook
impl Unpin for Webhook
impl UnwindSafe for Webhook
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more