#[non_exhaustive]pub struct ListDecoderManifestsInput {
pub model_manifest_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.model_manifest_arn: Option<String>
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
next_token: Option<String>
A pagination token for the next set of results.
If the results of a search are large, only a portion of the results are returned, and a nextToken
pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.
max_results: Option<i32>
The maximum number of items to return, between 1 and 100, inclusive.
Implementations§
source§impl ListDecoderManifestsInput
impl ListDecoderManifestsInput
sourcepub fn model_manifest_arn(&self) -> Option<&str>
pub fn model_manifest_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a vehicle model (model manifest) associated with the decoder manifest.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token for the next set of results.
If the results of a search are large, only a portion of the results are returned, and a nextToken
pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return, between 1 and 100, inclusive.
source§impl ListDecoderManifestsInput
impl ListDecoderManifestsInput
sourcepub fn builder() -> ListDecoderManifestsInputBuilder
pub fn builder() -> ListDecoderManifestsInputBuilder
Creates a new builder-style object to manufacture ListDecoderManifestsInput
.
Trait Implementations§
source§impl Clone for ListDecoderManifestsInput
impl Clone for ListDecoderManifestsInput
source§fn clone(&self) -> ListDecoderManifestsInput
fn clone(&self) -> ListDecoderManifestsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDecoderManifestsInput
impl Debug for ListDecoderManifestsInput
source§impl PartialEq for ListDecoderManifestsInput
impl PartialEq for ListDecoderManifestsInput
source§fn eq(&self, other: &ListDecoderManifestsInput) -> bool
fn eq(&self, other: &ListDecoderManifestsInput) -> bool
self
and other
values to be equal, and is used
by ==
.