#[non_exhaustive]pub struct ListSubPackageGroupsInput {
pub domain: Option<String>,
pub domain_owner: Option<String>,
pub package_group: Option<String>,
pub max_results: Option<i32>,
pub next_token: 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 name of the domain which contains the package group from which to list sub 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.
package_group: Option<String>
The pattern of the package group from which to list sub package groups.
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.
Implementations§
source§impl ListSubPackageGroupsInput
impl ListSubPackageGroupsInput
sourcepub fn domain(&self) -> Option<&str>
pub fn domain(&self) -> Option<&str>
The name of the domain which contains the package group from which to list sub package groups.
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 package_group(&self) -> Option<&str>
pub fn package_group(&self) -> Option<&str>
The pattern of the package group from which to list sub package groups.
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 ListSubPackageGroupsInput
impl ListSubPackageGroupsInput
sourcepub fn builder() -> ListSubPackageGroupsInputBuilder
pub fn builder() -> ListSubPackageGroupsInputBuilder
Creates a new builder-style object to manufacture ListSubPackageGroupsInput
.
Trait Implementations§
source§impl Clone for ListSubPackageGroupsInput
impl Clone for ListSubPackageGroupsInput
source§fn clone(&self) -> ListSubPackageGroupsInput
fn clone(&self) -> ListSubPackageGroupsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListSubPackageGroupsInput
impl Debug for ListSubPackageGroupsInput
source§impl PartialEq for ListSubPackageGroupsInput
impl PartialEq for ListSubPackageGroupsInput
source§fn eq(&self, other: &ListSubPackageGroupsInput) -> bool
fn eq(&self, other: &ListSubPackageGroupsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSubPackageGroupsInput
Auto Trait Implementations§
impl Freeze for ListSubPackageGroupsInput
impl RefUnwindSafe for ListSubPackageGroupsInput
impl Send for ListSubPackageGroupsInput
impl Sync for ListSubPackageGroupsInput
impl Unpin for ListSubPackageGroupsInput
impl UnwindSafe for ListSubPackageGroupsInput
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