#[non_exhaustive]pub struct ListReleaseLabelsInput {
pub filters: Option<ReleaseLabelFilter>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.filters: Option<ReleaseLabelFilter>
Filters the results of the request. Prefix
specifies the prefix of release labels to return. Application
specifies the application (with/without version) of release labels to return.
next_token: Option<String>
Specifies the next page of results. If NextToken
is not specified, which is usually the case for the first request of ListReleaseLabels, the first page of results are determined by other filtering parameters or by the latest version. The ListReleaseLabels
request fails if the identity (Amazon Web Services account ID) and all filtering parameters are different from the original request, or if the NextToken
is expired or tampered with.
max_results: Option<i32>
Defines the maximum number of release labels to return in a single response. The default is 100
.
Implementations§
source§impl ListReleaseLabelsInput
impl ListReleaseLabelsInput
sourcepub fn filters(&self) -> Option<&ReleaseLabelFilter>
pub fn filters(&self) -> Option<&ReleaseLabelFilter>
Filters the results of the request. Prefix
specifies the prefix of release labels to return. Application
specifies the application (with/without version) of release labels to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Specifies the next page of results. If NextToken
is not specified, which is usually the case for the first request of ListReleaseLabels, the first page of results are determined by other filtering parameters or by the latest version. The ListReleaseLabels
request fails if the identity (Amazon Web Services account ID) and all filtering parameters are different from the original request, or if the NextToken
is expired or tampered with.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Defines the maximum number of release labels to return in a single response. The default is 100
.
source§impl ListReleaseLabelsInput
impl ListReleaseLabelsInput
sourcepub fn builder() -> ListReleaseLabelsInputBuilder
pub fn builder() -> ListReleaseLabelsInputBuilder
Creates a new builder-style object to manufacture ListReleaseLabelsInput
.
Trait Implementations§
source§impl Clone for ListReleaseLabelsInput
impl Clone for ListReleaseLabelsInput
source§fn clone(&self) -> ListReleaseLabelsInput
fn clone(&self) -> ListReleaseLabelsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListReleaseLabelsInput
impl Debug for ListReleaseLabelsInput
source§impl PartialEq for ListReleaseLabelsInput
impl PartialEq for ListReleaseLabelsInput
source§fn eq(&self, other: &ListReleaseLabelsInput) -> bool
fn eq(&self, other: &ListReleaseLabelsInput) -> bool
self
and other
values to be equal, and is used
by ==
.