pub struct ListWebhooksRequest {
pub app_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Expand description
The request structure for the list webhooks request.
Fields§
§app_id: String
The unique ID for an Amplify app.
max_results: Option<i64>
The maximum number of records to list in a single response.
next_token: Option<String>
A pagination token. Set to null to start listing webhooks from the start. If non-null,the pagination token is returned in a result. Pass its value in here to list more webhooks.
Trait Implementations§
Source§impl Clone for ListWebhooksRequest
impl Clone for ListWebhooksRequest
Source§fn clone(&self) -> ListWebhooksRequest
fn clone(&self) -> ListWebhooksRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListWebhooksRequest
impl Debug for ListWebhooksRequest
Source§impl Default for ListWebhooksRequest
impl Default for ListWebhooksRequest
Source§fn default() -> ListWebhooksRequest
fn default() -> ListWebhooksRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListWebhooksRequest
impl PartialEq for ListWebhooksRequest
Source§impl Serialize for ListWebhooksRequest
impl Serialize for ListWebhooksRequest
impl StructuralPartialEq for ListWebhooksRequest
Auto Trait Implementations§
impl Freeze for ListWebhooksRequest
impl RefUnwindSafe for ListWebhooksRequest
impl Send for ListWebhooksRequest
impl Sync for ListWebhooksRequest
impl Unpin for ListWebhooksRequest
impl UnwindSafe for ListWebhooksRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more