pub struct Builder { /* private fields */ }Expand description
A builder for Webhook.
Implementations
sourceimpl Builder
 
impl Builder
sourcepub fn webhook_arn(self, input: impl Into<String>) -> Self
 
pub fn webhook_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the webhook.
sourcepub fn set_webhook_arn(self, input: Option<String>) -> Self
 
pub fn set_webhook_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for the webhook.
sourcepub fn webhook_id(self, input: impl Into<String>) -> Self
 
pub fn webhook_id(self, input: impl Into<String>) -> Self
The ID of the webhook.
sourcepub fn set_webhook_id(self, input: Option<String>) -> Self
 
pub fn set_webhook_id(self, input: Option<String>) -> Self
The ID of the webhook.
sourcepub fn webhook_url(self, input: impl Into<String>) -> Self
 
pub fn webhook_url(self, input: impl Into<String>) -> Self
The URL of the webhook.
sourcepub fn set_webhook_url(self, input: Option<String>) -> Self
 
pub fn set_webhook_url(self, input: Option<String>) -> Self
The URL of the webhook.
sourcepub fn branch_name(self, input: impl Into<String>) -> Self
 
pub fn branch_name(self, input: impl Into<String>) -> Self
The name for a branch that is part of an Amplify app.
sourcepub fn set_branch_name(self, input: Option<String>) -> Self
 
pub fn set_branch_name(self, input: Option<String>) -> Self
The name for a branch that is part of an Amplify app.
sourcepub fn description(self, input: impl Into<String>) -> Self
 
pub fn description(self, input: impl Into<String>) -> Self
The description for a webhook.
sourcepub fn set_description(self, input: Option<String>) -> Self
 
pub fn set_description(self, input: Option<String>) -> Self
The description for a webhook.
sourcepub fn create_time(self, input: DateTime) -> Self
 
pub fn create_time(self, input: DateTime) -> Self
The create date and time for a webhook.
sourcepub fn set_create_time(self, input: Option<DateTime>) -> Self
 
pub fn set_create_time(self, input: Option<DateTime>) -> Self
The create date and time for a webhook.
sourcepub fn update_time(self, input: DateTime) -> Self
 
pub fn update_time(self, input: DateTime) -> Self
Updates the date and time for a webhook.
sourcepub fn set_update_time(self, input: Option<DateTime>) -> Self
 
pub fn set_update_time(self, input: Option<DateTime>) -> Self
Updates the date and time for a webhook.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more