#[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 ==
.