AWSRekognitionStartStreamProcessorRequest
Objective-C
@interface AWSRekognitionStartStreamProcessorRequest
Swift
class AWSRekognitionStartStreamProcessorRequest
-
The name of the stream processor to start processing.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
Specifies the starting point in the Kinesis stream to start processing. You can use the producer timestamp or the fragment number. If you use the producer timestamp, you must put the time in milliseconds. For more information about fragment numbers, see Fragment.
This is a required parameter for label detection stream processors and should not be used to start a face search stream processor.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionStreamProcessingStartSelector *_Nullable startSelector;
Swift
var startSelector: AWSRekognitionStreamProcessingStartSelector? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) AWSRekognitionStreamProcessingStopSelector *_Nullable stopSelector;
Swift
var stopSelector: AWSRekognitionStreamProcessingStopSelector? { get set }