Struct aws_sdk_codepipeline::model::ListWebhookItem
source · [−]#[non_exhaustive]pub struct ListWebhookItem { /* private fields */ }
Expand description
The detail returned for each webhook after listing webhooks, such as the webhook URL, the webhook name, and the webhook ARN.
Implementations
sourceimpl ListWebhookItem
impl ListWebhookItem
sourcepub fn definition(&self) -> Option<&WebhookDefinition>
pub fn definition(&self) -> Option<&WebhookDefinition>
The detail returned for each webhook, such as the webhook authentication type and filter rules.
sourcepub fn url(&self) -> Option<&str>
pub fn url(&self) -> Option<&str>
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.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
The text of the error message about the webhook.
sourcepub fn error_code(&self) -> Option<&str>
pub fn error_code(&self) -> Option<&str>
The number code of the error.
sourcepub fn last_triggered(&self) -> Option<&DateTime>
pub fn last_triggered(&self) -> Option<&DateTime>
The date and time a webhook was last successfully triggered, in timestamp format.
Specifies the tags applied to the webhook.
sourceimpl ListWebhookItem
impl ListWebhookItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListWebhookItem
.
Trait Implementations
sourceimpl Clone for ListWebhookItem
impl Clone for ListWebhookItem
sourcefn clone(&self) -> ListWebhookItem
fn clone(&self) -> ListWebhookItem
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more