[][src]Struct rusoto_amplify::Webhook

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,
}

Structure for webhook, which associates a webhook with an Amplify App.

Fields

branch_name: String

Name for a branch, part of an Amplify App.

create_time: f64

Create date / time for a webhook.

description: String

Description for a webhook.

update_time: f64

Update date / time for a webhook.

webhook_arn: String

ARN for the webhook.

webhook_id: String

Id of the webhook.

webhook_url: String

Url of the webhook.

Trait Implementations

impl Clone for Webhook[src]

impl Debug for Webhook[src]

impl Default for Webhook[src]

impl<'de> Deserialize<'de> for Webhook[src]

impl PartialEq<Webhook> for Webhook[src]

impl StructuralPartialEq for Webhook[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.