#[non_exhaustive]pub struct GetSegmentDetectionInput {
pub job_id: 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.job_id: Option<String>
Job identifier for the text detection operation for which you want results returned. You get the job identifer from an initial call to StartSegmentDetection
.
max_results: Option<i32>
Maximum number of results to return per paginated call. The largest value you can specify is 1000.
next_token: Option<String>
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of text.
Implementations§
source§impl GetSegmentDetectionInput
impl GetSegmentDetectionInput
sourcepub fn job_id(&self) -> Option<&str>
pub fn job_id(&self) -> Option<&str>
Job identifier for the text detection operation for which you want results returned. You get the job identifer from an initial call to StartSegmentDetection
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum number of results to return per paginated call. The largest value you can specify is 1000.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of text.
source§impl GetSegmentDetectionInput
impl GetSegmentDetectionInput
sourcepub fn builder() -> GetSegmentDetectionInputBuilder
pub fn builder() -> GetSegmentDetectionInputBuilder
Creates a new builder-style object to manufacture GetSegmentDetectionInput
.
Trait Implementations§
source§impl Clone for GetSegmentDetectionInput
impl Clone for GetSegmentDetectionInput
source§fn clone(&self) -> GetSegmentDetectionInput
fn clone(&self) -> GetSegmentDetectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetSegmentDetectionInput
impl Debug for GetSegmentDetectionInput
source§impl PartialEq<GetSegmentDetectionInput> for GetSegmentDetectionInput
impl PartialEq<GetSegmentDetectionInput> for GetSegmentDetectionInput
source§fn eq(&self, other: &GetSegmentDetectionInput) -> bool
fn eq(&self, other: &GetSegmentDetectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.