Struct aws_sdk_elasticbeanstalk::operation::list_platform_versions::ListPlatformVersionsInput
source · #[non_exhaustive]pub struct ListPlatformVersionsInput {
pub filters: Option<Vec<PlatformFilter>>,
pub max_records: 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.filters: Option<Vec<PlatformFilter>>
Criteria for restricting the resulting list of platform versions. The filter is interpreted as a logical conjunction (AND) of the separate PlatformFilter
terms.
max_records: Option<i32>
The maximum number of platform version values returned in one call.
next_token: Option<String>
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
Implementations§
source§impl ListPlatformVersionsInput
impl ListPlatformVersionsInput
sourcepub fn filters(&self) -> Option<&[PlatformFilter]>
pub fn filters(&self) -> Option<&[PlatformFilter]>
Criteria for restricting the resulting list of platform versions. The filter is interpreted as a logical conjunction (AND) of the separate PlatformFilter
terms.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The maximum number of platform version values returned in one call.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
source§impl ListPlatformVersionsInput
impl ListPlatformVersionsInput
sourcepub fn builder() -> ListPlatformVersionsInputBuilder
pub fn builder() -> ListPlatformVersionsInputBuilder
Creates a new builder-style object to manufacture ListPlatformVersionsInput
.
Trait Implementations§
source§impl Clone for ListPlatformVersionsInput
impl Clone for ListPlatformVersionsInput
source§fn clone(&self) -> ListPlatformVersionsInput
fn clone(&self) -> ListPlatformVersionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListPlatformVersionsInput
impl Debug for ListPlatformVersionsInput
source§impl PartialEq<ListPlatformVersionsInput> for ListPlatformVersionsInput
impl PartialEq<ListPlatformVersionsInput> for ListPlatformVersionsInput
source§fn eq(&self, other: &ListPlatformVersionsInput) -> bool
fn eq(&self, other: &ListPlatformVersionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.