#[non_exhaustive]pub struct ListContainerRecipesInput {
pub owner: Option<Ownership>,
pub filters: Option<Vec<Filter>>,
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.owner: Option<Ownership>
Returns container recipes belonging to the specified owner, that have been shared with you. You can omit this field to return container recipes belonging to your account.
filters: Option<Vec<Filter>>
Use the following filters to streamline results:
-
containerType
-
name
-
parentImage
-
platform
max_results: Option<i32>
The maximum number of results to return in the list.
next_token: Option<String>
Provides a token for pagination, which determines where to begin the next set of results when the current set reaches the maximum for one request.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListContainerRecipes, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListContainerRecipes, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListContainerRecipes
>
Creates a new builder-style object to manufacture ListContainerRecipesInput
Returns container recipes belonging to the specified owner, that have been shared with you. You can omit this field to return container recipes belonging to your account.
Use the following filters to streamline results:
-
containerType
-
name
-
parentImage
-
platform
The maximum number of results to return in the list.
Provides a token for pagination, which determines where to begin the next set of results when the current set reaches the maximum for one request.
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 ListContainerRecipesInput
impl Send for ListContainerRecipesInput
impl Sync for ListContainerRecipesInput
impl Unpin for ListContainerRecipesInput
impl UnwindSafe for ListContainerRecipesInput
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