Struct aws_sdk_outposts::input::ListCatalogItemsInput
source · [−]#[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>>
A filter for the class of items in the catalog.
Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
supported_storage_filter: Option<Vec<SupportedStorageEnum>>
A filter for the storage options of items in the catalog.
Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
ec2_family_filter: Option<Vec<String>>
A filter for EC2 family options for items in the catalog.
Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCatalogItems, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCatalogItems, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListCatalogItems
>
Creates a new builder-style object to manufacture ListCatalogItemsInput
The pagination token.
The maximum page size.
A filter for the class of items in the catalog.
Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
A filter for the storage options of items in the catalog.
Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
A filter for EC2 family options for items in the catalog.
Filter values are case sensitive. If you specify multiple values for a filter, the values are joined with an OR
, and the request returns all results that match any of the specified values.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListCatalogItemsInput
impl Send for ListCatalogItemsInput
impl Sync for ListCatalogItemsInput
impl Unpin for ListCatalogItemsInput
impl UnwindSafe for ListCatalogItemsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more