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,
}
Expand description
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.
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§
Source§impl Clone for ListWebhookItem
impl Clone for ListWebhookItem
Source§fn clone(&self) -> ListWebhookItem
fn clone(&self) -> ListWebhookItem
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more