#[non_exhaustive]pub struct ListActionTypesInput {
pub action_owner_filter: Option<ActionOwner>,
pub next_token: Option<String>,
pub region_filter: Option<String>,
}Expand description
Represents the input of a ListActionTypes action.
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.action_owner_filter: Option<ActionOwner>Filters the list of action types to those created by a specified entity.
next_token: Option<String>An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
region_filter: Option<String>The Region to filter on for the list of action types.
Implementations§
source§impl ListActionTypesInput
impl ListActionTypesInput
sourcepub fn action_owner_filter(&self) -> Option<&ActionOwner>
pub fn action_owner_filter(&self) -> Option<&ActionOwner>
Filters the list of action types to those created by a specified entity.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
sourcepub fn region_filter(&self) -> Option<&str>
pub fn region_filter(&self) -> Option<&str>
The Region to filter on for the list of action types.
source§impl ListActionTypesInput
impl ListActionTypesInput
sourcepub fn builder() -> ListActionTypesInputBuilder
pub fn builder() -> ListActionTypesInputBuilder
Creates a new builder-style object to manufacture ListActionTypesInput.
Trait Implementations§
source§impl Clone for ListActionTypesInput
impl Clone for ListActionTypesInput
source§fn clone(&self) -> ListActionTypesInput
fn clone(&self) -> ListActionTypesInput
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 ListActionTypesInput
impl Debug for ListActionTypesInput
source§impl PartialEq for ListActionTypesInput
impl PartialEq for ListActionTypesInput
source§fn eq(&self, other: &ListActionTypesInput) -> bool
fn eq(&self, other: &ListActionTypesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListActionTypesInput
Auto Trait Implementations§
impl RefUnwindSafe for ListActionTypesInput
impl Send for ListActionTypesInput
impl Sync for ListActionTypesInput
impl Unpin for ListActionTypesInput
impl UnwindSafe for ListActionTypesInput
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