#[non_exhaustive]pub struct ListIngestionsInput {
pub app_bundle_identifier: Option<String>,
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.app_bundle_identifier: Option<String>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
max_results: Option<i32>The maximum number of results that are returned per call. You can use nextToken to obtain further pages of results.
This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
next_token: Option<String>If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Implementations§
source§impl ListIngestionsInput
impl ListIngestionsInput
sourcepub fn app_bundle_identifier(&self) -> Option<&str>
pub fn app_bundle_identifier(&self) -> Option<&str>
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results that are returned per call. You can use nextToken to obtain further pages of results.
This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
source§impl ListIngestionsInput
impl ListIngestionsInput
sourcepub fn builder() -> ListIngestionsInputBuilder
pub fn builder() -> ListIngestionsInputBuilder
Creates a new builder-style object to manufacture ListIngestionsInput.
Trait Implementations§
source§impl Clone for ListIngestionsInput
impl Clone for ListIngestionsInput
source§fn clone(&self) -> ListIngestionsInput
fn clone(&self) -> ListIngestionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListIngestionsInput
impl Debug for ListIngestionsInput
source§impl PartialEq for ListIngestionsInput
impl PartialEq for ListIngestionsInput
source§fn eq(&self, other: &ListIngestionsInput) -> bool
fn eq(&self, other: &ListIngestionsInput) -> bool
self and other values to be equal, and is used
by ==.