#[non_exhaustive]pub struct ListCatalogItemsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub item_class_filter: Option<Vec<CatalogItemClass>>,
pub supported_storage_filter: Option<Vec<SupportedStorageEnum>>,
pub ec2_family_filter: Option<Vec<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.next_token: Option<String>
The pagination token.
max_results: Option<i32>
The maximum page size.
item_class_filter: Option<Vec<CatalogItemClass>>
Filters the results by item class.
supported_storage_filter: Option<Vec<SupportedStorageEnum>>
Filters the results by storage option.
ec2_family_filter: Option<Vec<String>>
Filters the results by EC2 family (for example, M5).
Implementations§
source§impl ListCatalogItemsInput
impl ListCatalogItemsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum page size.
sourcepub fn item_class_filter(&self) -> &[CatalogItemClass]
pub fn item_class_filter(&self) -> &[CatalogItemClass]
Filters the results by item class.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .item_class_filter.is_none()
.
sourcepub fn supported_storage_filter(&self) -> &[SupportedStorageEnum]
pub fn supported_storage_filter(&self) -> &[SupportedStorageEnum]
Filters the results by storage option.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .supported_storage_filter.is_none()
.
sourcepub fn ec2_family_filter(&self) -> &[String]
pub fn ec2_family_filter(&self) -> &[String]
Filters the results by EC2 family (for example, M5).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ec2_family_filter.is_none()
.
source§impl ListCatalogItemsInput
impl ListCatalogItemsInput
sourcepub fn builder() -> ListCatalogItemsInputBuilder
pub fn builder() -> ListCatalogItemsInputBuilder
Creates a new builder-style object to manufacture ListCatalogItemsInput
.
Trait Implementations§
source§impl Clone for ListCatalogItemsInput
impl Clone for ListCatalogItemsInput
source§fn clone(&self) -> ListCatalogItemsInput
fn clone(&self) -> ListCatalogItemsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListCatalogItemsInput
impl Debug for ListCatalogItemsInput
source§impl PartialEq for ListCatalogItemsInput
impl PartialEq for ListCatalogItemsInput
source§fn eq(&self, other: &ListCatalogItemsInput) -> bool
fn eq(&self, other: &ListCatalogItemsInput) -> bool
self
and other
values to be equal, and is used
by ==
.