Struct aws_sdk_mobile::input::ListBundlesInput
source · [−]#[non_exhaustive]pub struct ListBundlesInput {
pub max_results: i32,
pub next_token: Option<String>,
}
Expand description
Request structure to request all available bundles.
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
Maximum number of records to list in a single response.
next_token: Option<String>
Pagination token. Set to null to start listing bundles from start. If non-null pagination token is returned in a result, then pass its value in here in another request to list more bundles.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBundles, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListBundles, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListBundles
>
Creates a new builder-style object to manufacture ListBundlesInput
Maximum number of records to list in a single response.
Pagination token. Set to null to start listing bundles from start. If non-null pagination token is returned in a result, then pass its value in here in another request to list more bundles.
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 ListBundlesInput
impl Send for ListBundlesInput
impl Sync for ListBundlesInput
impl Unpin for ListBundlesInput
impl UnwindSafe for ListBundlesInput
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