You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Rekognition::Types::CreateStreamProcessorRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateStreamProcessorRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  input: { # required
    kinesis_video_stream: {
      arn: "KinesisVideoArn",
    },
  },
  output: { # required
    kinesis_data_stream: {
      arn: "KinesisDataArn",
    },
  },
  name: "StreamProcessorName", # required
  settings: { # required
    face_search: {
      collection_id: "CollectionId",
      face_match_threshold: 1.0,
    },
  },
  role_arn: "RoleArn", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#inputTypes::StreamProcessorInput

Kinesis video stream stream that provides the source streaming video. If you are using the AWS CLI, the parameter name is StreamProcessorInput.

Returns:

#nameString

An identifier you assign to the stream processor. You can use Name to manage the stream processor. For example, you can get the current status of the stream processor by calling DescribeStreamProcessor. Name is idempotent.

Returns:

  • (String)

    An identifier you assign to the stream processor.

#outputTypes::StreamProcessorOutput

Kinesis data stream stream to which Amazon Rekognition Video puts the analysis results. If you are using the AWS CLI, the parameter name is StreamProcessorOutput.

Returns:

#role_arnString

ARN of the IAM role that allows access to the stream processor.

Returns:

  • (String)

    ARN of the IAM role that allows access to the stream processor.

#settingsTypes::StreamProcessorSettings

Face recognition input parameters to be used by the stream processor. Includes the collection to use for face recognition and the face attributes to detect.

Returns: