Struct aws_sdk_glue::operation::list_triggers::ListTriggersOutput
source · #[non_exhaustive]pub struct ListTriggersOutput {
pub trigger_names: Option<Vec<String>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.trigger_names: Option<Vec<String>>The names of all triggers in the account, or the triggers with the specified tags.
next_token: Option<String>A continuation token, if the returned list does not contain the last metric available.
Implementations§
source§impl ListTriggersOutput
impl ListTriggersOutput
sourcepub fn trigger_names(&self) -> Option<&[String]>
pub fn trigger_names(&self) -> Option<&[String]>
The names of all triggers in the account, or the triggers with the specified tags.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if the returned list does not contain the last metric available.
source§impl ListTriggersOutput
impl ListTriggersOutput
sourcepub fn builder() -> ListTriggersOutputBuilder
pub fn builder() -> ListTriggersOutputBuilder
Creates a new builder-style object to manufacture ListTriggersOutput.
Trait Implementations§
source§impl Clone for ListTriggersOutput
impl Clone for ListTriggersOutput
source§fn clone(&self) -> ListTriggersOutput
fn clone(&self) -> ListTriggersOutput
Returns a copy 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 ListTriggersOutput
impl Debug for ListTriggersOutput
source§impl PartialEq<ListTriggersOutput> for ListTriggersOutput
impl PartialEq<ListTriggersOutput> for ListTriggersOutput
source§fn eq(&self, other: &ListTriggersOutput) -> bool
fn eq(&self, other: &ListTriggersOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListTriggersOutput
impl RequestId for ListTriggersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for ListTriggersOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListTriggersOutput
impl Send for ListTriggersOutput
impl Sync for ListTriggersOutput
impl Unpin for ListTriggersOutput
impl UnwindSafe for ListTriggersOutput
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