#[non_exhaustive]pub struct ListPackageGroupsInput {
pub domain: Option<String>,
pub domain_owner: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub prefix: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain: Option<String>
The domain for which you want to list package groups.
domain_owner: Option<String>
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
max_results: Option<i32>
The maximum number of results to return per page.
next_token: Option<String>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
prefix: Option<String>
A prefix for which to search package groups. When included, ListPackageGroups
will return only package groups with patterns that match the prefix.
Implementations§
source§impl ListPackageGroupsInput
impl ListPackageGroupsInput
sourcepub fn domain_owner(&self) -> Option<&str>
pub fn domain_owner(&self) -> Option<&str>
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per page.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
source§impl ListPackageGroupsInput
impl ListPackageGroupsInput
sourcepub fn builder() -> ListPackageGroupsInputBuilder
pub fn builder() -> ListPackageGroupsInputBuilder
Creates a new builder-style object to manufacture ListPackageGroupsInput
.
Trait Implementations§
source§impl Clone for ListPackageGroupsInput
impl Clone for ListPackageGroupsInput
source§fn clone(&self) -> ListPackageGroupsInput
fn clone(&self) -> ListPackageGroupsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListPackageGroupsInput
impl Debug for ListPackageGroupsInput
source§impl PartialEq for ListPackageGroupsInput
impl PartialEq for ListPackageGroupsInput
source§fn eq(&self, other: &ListPackageGroupsInput) -> bool
fn eq(&self, other: &ListPackageGroupsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListPackageGroupsInput
Auto Trait Implementations§
impl Freeze for ListPackageGroupsInput
impl RefUnwindSafe for ListPackageGroupsInput
impl Send for ListPackageGroupsInput
impl Sync for ListPackageGroupsInput
impl Unpin for ListPackageGroupsInput
impl UnwindSafe for ListPackageGroupsInput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more