[][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 tags: Option<Vec<Tag>>,
    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

arn: Option<String>

The Amazon Resource Name (ARN) of the webhook.

definition: WebhookDefinition

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

error_code: Option<String>

The number code of the error.

error_message: Option<String>

The text of the error message about the webhook.

last_triggered: Option<f64>

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

tags: Option<Vec<Tag>>

Specifies the tags applied to the webhook.

url: String

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 makes the old URL invalid and generates a new one.

Trait Implementations

impl Clone for ListWebhookItem[src]

impl Debug for ListWebhookItem[src]

impl Default for ListWebhookItem[src]

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

impl PartialEq<ListWebhookItem> for ListWebhookItem[src]

impl StructuralPartialEq for ListWebhookItem[src]

Auto Trait Implementations

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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.