[][src]Struct rusoto_codepipeline::ListWebhookItem

pub struct ListWebhookItem {
    pub arn: Option<String>,
    pub definition: WebhookDefinition,
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub last_triggered: Option<f64>,
    pub url: String,
}

The detail returned for each webhook after listing webhooks, such as the webhook URL, the webhook name, and the webhook ARN.

Fields

The Amazon Resource Name (ARN) of the webhook.

The detail returned for each webhook, such as the webhook authentication type and filter rules.

The number code of the error.

The text of the error message about the webhook.

The date and time a webhook was last successfully triggered, in timestamp format.

A unique URL generated by CodePipeline. When a POST request is made to this URL, the defined pipeline is started as long as the body of the post request satisfies the defined authentication and filtering conditions. Deleting and re-creating a webhook will make the old URL invalid and generate a new URL.

Trait Implementations

impl Clone for ListWebhookItem
[src]

Performs copy-assignment from source. Read more

impl Default for ListWebhookItem
[src]

impl PartialEq<ListWebhookItem> for ListWebhookItem
[src]

impl Debug for ListWebhookItem
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self