Struct aws_sdk_elasticsearch::input::ListElasticsearchVersionsInput [−][src]
#[non_exhaustive]pub struct ListElasticsearchVersionsInput {
pub max_results: i32,
pub next_token: Option<String>,
}
Expand description
Container for the parameters to the
operation. ListElasticsearchVersions
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, then 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 provided must be greater than 10 else it wont be honored.
next_token: Option<String>
Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client to retrieve more results.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListElasticsearchVersions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListElasticsearchVersions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListElasticsearchVersions
>
Creates a new builder-style object to manufacture ListElasticsearchVersionsInput
Set this value to limit the number of results returned. Value provided must be greater than 10 else it wont be honored.
Paginated APIs accepts NextToken input to returns next page results and provides a NextToken output in the response which can be used by the client 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 Send for ListElasticsearchVersionsInput
impl Sync for ListElasticsearchVersionsInput
impl Unpin for ListElasticsearchVersionsInput
impl UnwindSafe for ListElasticsearchVersionsInput
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