#[non_exhaustive]pub struct StartStreamProcessorInput { /* private fields */ }Implementations
sourceimpl StartStreamProcessorInput
impl StartStreamProcessorInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartStreamProcessor, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartStreamProcessor, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartStreamProcessor>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartStreamProcessorInput.
sourceimpl StartStreamProcessorInput
impl StartStreamProcessorInput
sourcepub fn start_selector(&self) -> Option<&StreamProcessingStartSelector>
pub fn start_selector(&self) -> Option<&StreamProcessingStartSelector>
Specifies the starting point in the Kinesis stream to start processing. You can use the producer timestamp or the fragment number. For more information, see Fragment.
This is a required parameter for label detection stream processors and should not be used to start a face search stream processor.
sourcepub fn stop_selector(&self) -> Option<&StreamProcessingStopSelector>
pub fn stop_selector(&self) -> Option<&StreamProcessingStopSelector>
Specifies when to stop processing the stream. You can specify a maximum amount of time to process the video.
This is a required parameter for label detection stream processors and should not be used to start a face search stream processor.
Trait Implementations
sourceimpl Clone for StartStreamProcessorInput
impl Clone for StartStreamProcessorInput
sourcefn clone(&self) -> StartStreamProcessorInput
fn clone(&self) -> StartStreamProcessorInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StartStreamProcessorInput
impl Debug for StartStreamProcessorInput
sourceimpl PartialEq<StartStreamProcessorInput> for StartStreamProcessorInput
impl PartialEq<StartStreamProcessorInput> for StartStreamProcessorInput
sourcefn eq(&self, other: &StartStreamProcessorInput) -> bool
fn eq(&self, other: &StartStreamProcessorInput) -> bool
impl StructuralPartialEq for StartStreamProcessorInput
Auto Trait Implementations
impl RefUnwindSafe for StartStreamProcessorInput
impl Send for StartStreamProcessorInput
impl Sync for StartStreamProcessorInput
impl Unpin for StartStreamProcessorInput
impl UnwindSafe for StartStreamProcessorInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more