Struct aws_sdk_opensearch::input::ListVersionsInput
source · [−]#[non_exhaustive]pub struct ListVersionsInput {
pub max_results: i32,
pub next_token: Option<String>,
}
Expand description
Container for the parameters to the
operation. ListVersions
Use
to control the maximum number of results to retrieve in a single call. MaxResults
Use
in response to retrieve more results. If the received response does not contain a NextToken, there are no more results to retrieve. NextToken
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: i32
Set this value to limit the number of results returned. Value must be greater than 10 or it won't be honored.
next_token: Option<String>
Paginated APIs accept the NextToken input to return the next page of results and provide a NextToken output in the response, which you can use to retrieve more results.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListVersions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListVersions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListVersions
>
Creates a new builder-style object to manufacture ListVersionsInput
Set this value to limit the number of results returned. Value must be greater than 10 or it won't be honored.
Paginated APIs accept the NextToken input to return the next page of results and provide a NextToken output in the response, which you can use to retrieve more results.
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 ListVersionsInput
impl Send for ListVersionsInput
impl Sync for ListVersionsInput
impl Unpin for ListVersionsInput
impl UnwindSafe for ListVersionsInput
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