Description Usage Arguments Value Request syntax
View source: R/rekognition_operations.R
Provides information about a stream processor created by
create_stream_processor
. You
can get information about the input and output streams, the input
parameters for the face recognition being performed, and the current
status of the stream processor.
1 |
Name |
[required] Name of the stream processor for which you want information. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | list(
Name = "string",
StreamProcessorArn = "string",
Status = "STOPPED"|"STARTING"|"RUNNING"|"FAILED"|"STOPPING",
StatusMessage = "string",
CreationTimestamp = as.POSIXct(
"2015-01-01"
),
LastUpdateTimestamp = as.POSIXct(
"2015-01-01"
),
Input = list(
KinesisVideoStream = list(
Arn = "string"
)
),
Output = list(
KinesisDataStream = list(
Arn = "string"
)
),
RoleArn = "string",
Settings = list(
FaceSearch = list(
CollectionId = "string",
FaceMatchThreshold = 123.0
)
)
)
|
1 2 3 | svc$describe_stream_processor(
Name = "string"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.