[][src]Struct rusoto_codebuild::UpdateWebhookInput

pub struct UpdateWebhookInput {
    pub branch_filter: Option<String>,
    pub filter_groups: Option<Vec<Vec<WebhookFilter>>>,
    pub project_name: String,
    pub rotate_secret: Option<bool>,
}

Fields

branch_filter: Option<String>

A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

It is recommended that you use filterGroups instead of branchFilter.

filter_groups: Option<Vec<Vec<WebhookFilter>>>

An array of arrays of WebhookFilter objects used to determine if a webhook event can trigger a build. A filter group must contain at least one EVENT WebhookFilter.

project_name: String

The name of the AWS CodeBuild project.

rotate_secret: Option<bool>

A boolean value that specifies whether the associated GitHub repository's secret token should be updated. If you use Bitbucket for your repository, rotateSecret is ignored.

Trait Implementations

impl Clone for UpdateWebhookInput[src]

impl Debug for UpdateWebhookInput[src]

impl Default for UpdateWebhookInput[src]

impl PartialEq<UpdateWebhookInput> for UpdateWebhookInput[src]

impl Serialize for UpdateWebhookInput[src]

impl StructuralPartialEq for UpdateWebhookInput[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> 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> Sealed<T> for T where
    T: ?Sized

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.