Struct aws_sdk_databrew::input::ListRecipesInput [−][src]
#[non_exhaustive]pub struct ListRecipesInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub recipe_version: 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.max_results: Option<i32>
The maximum number of results to return in this request.
next_token: Option<String>
The token returned by a previous call to retrieve the next set of results.
recipe_version: Option<String>
Return only those recipes with a version identifier of LATEST_WORKING
or
LATEST_PUBLISHED
. If RecipeVersion
is omitted,
ListRecipes
returns all of the LATEST_PUBLISHED
recipe
versions.
Valid values: LATEST_WORKING
| LATEST_PUBLISHED
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRecipes, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRecipes, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListRecipes
>
Creates a new builder-style object to manufacture ListRecipesInput
The maximum number of results to return in this request.
The token returned by a previous call to retrieve the next set of results.
Return only those recipes with a version identifier of LATEST_WORKING
or
LATEST_PUBLISHED
. If RecipeVersion
is omitted,
ListRecipes
returns all of the LATEST_PUBLISHED
recipe
versions.
Valid values: LATEST_WORKING
| LATEST_PUBLISHED
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 ListRecipesInput
impl Send for ListRecipesInput
impl Sync for ListRecipesInput
impl Unpin for ListRecipesInput
impl UnwindSafe for ListRecipesInput
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