#[non_exhaustive]pub struct ListBatchSegmentJobsInput {
pub solution_version_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.solution_version_arn: Option<String>The Amazon Resource Name (ARN) of the solution version that the batch segment jobs used to generate batch segments.
next_token: Option<String>The token to request the next page of results.
max_results: Option<i32>The maximum number of batch segment job results to return in each page. The default value is 100.
Implementations§
source§impl ListBatchSegmentJobsInput
impl ListBatchSegmentJobsInput
sourcepub fn solution_version_arn(&self) -> Option<&str>
pub fn solution_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the solution version that the batch segment jobs used to generate batch segments.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to request the next page of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of batch segment job results to return in each page. The default value is 100.
source§impl ListBatchSegmentJobsInput
impl ListBatchSegmentJobsInput
sourcepub fn builder() -> ListBatchSegmentJobsInputBuilder
pub fn builder() -> ListBatchSegmentJobsInputBuilder
Creates a new builder-style object to manufacture ListBatchSegmentJobsInput.
Trait Implementations§
source§impl Clone for ListBatchSegmentJobsInput
impl Clone for ListBatchSegmentJobsInput
source§fn clone(&self) -> ListBatchSegmentJobsInput
fn clone(&self) -> ListBatchSegmentJobsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListBatchSegmentJobsInput
impl Debug for ListBatchSegmentJobsInput
source§impl PartialEq for ListBatchSegmentJobsInput
impl PartialEq for ListBatchSegmentJobsInput
source§fn eq(&self, other: &ListBatchSegmentJobsInput) -> bool
fn eq(&self, other: &ListBatchSegmentJobsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListBatchSegmentJobsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListBatchSegmentJobsInput
impl Send for ListBatchSegmentJobsInput
impl Sync for ListBatchSegmentJobsInput
impl Unpin for ListBatchSegmentJobsInput
impl UnwindSafe for ListBatchSegmentJobsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.