Struct aws_sdk_omics::operation::list_shares::ListSharesInput
source · #[non_exhaustive]pub struct ListSharesInput {
pub resource_owner: Option<ResourceOwner>,
pub filter: Option<Filter>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.resource_owner: Option<ResourceOwner>
The account that owns the analytics store shared.
filter: Option<Filter>
Attributes used to filter for a specific subset of shares.
next_token: Option<String>
Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
max_results: Option<i32>
The maximum number of shares to return in one page of results.
Implementations§
sourcepub fn resource_owner(&self) -> Option<&ResourceOwner>
pub fn resource_owner(&self) -> Option<&ResourceOwner>
The account that owns the analytics store shared.
sourcepub fn filter(&self) -> Option<&Filter>
pub fn filter(&self) -> Option<&Filter>
Attributes used to filter for a specific subset of shares.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of shares to return in one page of results.
sourcepub fn builder() -> ListSharesInputBuilder
pub fn builder() -> ListSharesInputBuilder
Creates a new builder-style object to manufacture ListSharesInput
.
Trait Implementations§
source§fn clone(&self) -> ListSharesInput
fn clone(&self) -> ListSharesInput
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§fn eq(&self, other: &ListSharesInput) -> bool
fn eq(&self, other: &ListSharesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.Auto Trait Implementations§
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.