1. Packages
  2. AWS Cloud Control
  3. API Docs
  4. rekognition
  5. StreamProcessor

We recommend new projects start with resources from the AWS provider.

AWS Cloud Control v1.27.0 published on Monday, Apr 14, 2025 by Pulumi

aws-native.rekognition.StreamProcessor

Explore with Pulumi AI

We recommend new projects start with resources from the AWS provider.

AWS Cloud Control v1.27.0 published on Monday, Apr 14, 2025 by Pulumi

The AWS::Rekognition::StreamProcessor type is used to create an Amazon Rekognition StreamProcessor that you can use to analyze streaming videos.

Create StreamProcessor Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StreamProcessor(name: string, args: StreamProcessorArgs, opts?: CustomResourceOptions);
@overload
def StreamProcessor(resource_name: str,
                    args: StreamProcessorArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def StreamProcessor(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    kinesis_video_stream: Optional[StreamProcessorKinesisVideoStreamArgs] = None,
                    role_arn: Optional[str] = None,
                    kms_key_id: Optional[str] = None,
                    face_search_settings: Optional[StreamProcessorFaceSearchSettingsArgs] = None,
                    kinesis_data_stream: Optional[StreamProcessorKinesisDataStreamArgs] = None,
                    data_sharing_preference: Optional[StreamProcessorDataSharingPreferenceArgs] = None,
                    bounding_box_regions_of_interest: Optional[Sequence[StreamProcessorBoundingBoxArgs]] = None,
                    name: Optional[str] = None,
                    notification_channel: Optional[StreamProcessorNotificationChannelArgs] = None,
                    polygon_regions_of_interest: Optional[Sequence[Sequence[StreamProcessorPointArgs]]] = None,
                    connected_home_settings: Optional[StreamProcessorConnectedHomeSettingsArgs] = None,
                    s3_destination: Optional[StreamProcessorS3DestinationArgs] = None,
                    tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
func NewStreamProcessor(ctx *Context, name string, args StreamProcessorArgs, opts ...ResourceOption) (*StreamProcessor, error)
public StreamProcessor(string name, StreamProcessorArgs args, CustomResourceOptions? opts = null)
public StreamProcessor(String name, StreamProcessorArgs args)
public StreamProcessor(String name, StreamProcessorArgs args, CustomResourceOptions options)
type: aws-native:rekognition:StreamProcessor
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StreamProcessorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StreamProcessorArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StreamProcessorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StreamProcessorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StreamProcessorArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

StreamProcessor Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The StreamProcessor resource accepts the following input properties:

KinesisVideoStream This property is required. Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorKinesisVideoStream
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. For more information, see KinesisVideoStream .
RoleArn This property is required. string
ARN of the IAM role that allows access to the stream processor, and provides Rekognition read permissions for KVS stream and write permissions to S3 bucket and SNS topic.
BoundingBoxRegionsOfInterest List<Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorBoundingBox>
The BoundingBoxRegionsOfInterest specifies an array of bounding boxes of interest in the video frames to analyze, as part of connected home feature. If an object is partially in a region of interest, Rekognition will tag it as detected if the overlap of the object with the region-of-interest is greater than 20%.
ConnectedHomeSettings Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorConnectedHomeSettings
Connected home settings to use on a streaming video. You can use a stream processor for connected home features and select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For more information, see the ConnectedHome section of StreamProcessorSettings .
DataSharingPreference Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorDataSharingPreference
Allows you to opt in or opt out to share data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams. For more information, see StreamProcessorDataSharingPreference .
FaceSearchSettings Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorFaceSearchSettings
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. For more information regarding the contents of the parameters, see FaceSearchSettings .
KinesisDataStream Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorKinesisDataStream
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. This is the Amazon Kinesis Data Streams instance to which the Amazon Rekognition stream processor streams the analysis results. This must be created within the constraints specified at KinesisDataStream .
KmsKeyId string
The KMS key that is used by Rekognition to encrypt any intermediate customer metadata and store in the customer's S3 bucket.
Name string
Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor.
NotificationChannel Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorNotificationChannel
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
PolygonRegionsOfInterest List<ImmutableArray<Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorPoint>>
The PolygonRegionsOfInterest specifies a set of polygon areas of interest in the video frames to analyze, as part of connected home feature. Each polygon is in turn, an ordered list of Point
S3Destination Pulumi.AwsNative.Rekognition.Inputs.StreamProcessorS3Destination
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. For more information, see the S3Destination section of StreamProcessorOutput .
Tags List<Pulumi.AwsNative.Inputs.Tag>
An array of key-value pairs to apply to this resource.
KinesisVideoStream This property is required. StreamProcessorKinesisVideoStreamArgs
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. For more information, see KinesisVideoStream .
RoleArn This property is required. string
ARN of the IAM role that allows access to the stream processor, and provides Rekognition read permissions for KVS stream and write permissions to S3 bucket and SNS topic.
BoundingBoxRegionsOfInterest []StreamProcessorBoundingBoxArgs
The BoundingBoxRegionsOfInterest specifies an array of bounding boxes of interest in the video frames to analyze, as part of connected home feature. If an object is partially in a region of interest, Rekognition will tag it as detected if the overlap of the object with the region-of-interest is greater than 20%.
ConnectedHomeSettings StreamProcessorConnectedHomeSettingsArgs
Connected home settings to use on a streaming video. You can use a stream processor for connected home features and select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For more information, see the ConnectedHome section of StreamProcessorSettings .
DataSharingPreference StreamProcessorDataSharingPreferenceArgs
Allows you to opt in or opt out to share data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams. For more information, see StreamProcessorDataSharingPreference .
FaceSearchSettings StreamProcessorFaceSearchSettingsArgs
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. For more information regarding the contents of the parameters, see FaceSearchSettings .
KinesisDataStream StreamProcessorKinesisDataStreamArgs
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. This is the Amazon Kinesis Data Streams instance to which the Amazon Rekognition stream processor streams the analysis results. This must be created within the constraints specified at KinesisDataStream .
KmsKeyId string
The KMS key that is used by Rekognition to encrypt any intermediate customer metadata and store in the customer's S3 bucket.
Name string
Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor.
NotificationChannel StreamProcessorNotificationChannelArgs
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
PolygonRegionsOfInterest [][]StreamProcessorPointArgs
The PolygonRegionsOfInterest specifies a set of polygon areas of interest in the video frames to analyze, as part of connected home feature. Each polygon is in turn, an ordered list of Point
S3Destination StreamProcessorS3DestinationArgs
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. For more information, see the S3Destination section of StreamProcessorOutput .
Tags TagArgs
An array of key-value pairs to apply to this resource.
kinesisVideoStream This property is required. StreamProcessorKinesisVideoStream
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. For more information, see KinesisVideoStream .
roleArn This property is required. String
ARN of the IAM role that allows access to the stream processor, and provides Rekognition read permissions for KVS stream and write permissions to S3 bucket and SNS topic.
boundingBoxRegionsOfInterest List<StreamProcessorBoundingBox>
The BoundingBoxRegionsOfInterest specifies an array of bounding boxes of interest in the video frames to analyze, as part of connected home feature. If an object is partially in a region of interest, Rekognition will tag it as detected if the overlap of the object with the region-of-interest is greater than 20%.
connectedHomeSettings StreamProcessorConnectedHomeSettings
Connected home settings to use on a streaming video. You can use a stream processor for connected home features and select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For more information, see the ConnectedHome section of StreamProcessorSettings .
dataSharingPreference StreamProcessorDataSharingPreference
Allows you to opt in or opt out to share data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams. For more information, see StreamProcessorDataSharingPreference .
faceSearchSettings StreamProcessorFaceSearchSettings
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. For more information regarding the contents of the parameters, see FaceSearchSettings .
kinesisDataStream StreamProcessorKinesisDataStream
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. This is the Amazon Kinesis Data Streams instance to which the Amazon Rekognition stream processor streams the analysis results. This must be created within the constraints specified at KinesisDataStream .
kmsKeyId String
The KMS key that is used by Rekognition to encrypt any intermediate customer metadata and store in the customer's S3 bucket.
name String
Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor.
notificationChannel StreamProcessorNotificationChannel
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
polygonRegionsOfInterest List<List<StreamProcessorPoint>>
The PolygonRegionsOfInterest specifies a set of polygon areas of interest in the video frames to analyze, as part of connected home feature. Each polygon is in turn, an ordered list of Point
s3Destination StreamProcessorS3Destination
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. For more information, see the S3Destination section of StreamProcessorOutput .
tags List<Tag>
An array of key-value pairs to apply to this resource.
kinesisVideoStream This property is required. StreamProcessorKinesisVideoStream
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. For more information, see KinesisVideoStream .
roleArn This property is required. string
ARN of the IAM role that allows access to the stream processor, and provides Rekognition read permissions for KVS stream and write permissions to S3 bucket and SNS topic.
boundingBoxRegionsOfInterest StreamProcessorBoundingBox[]
The BoundingBoxRegionsOfInterest specifies an array of bounding boxes of interest in the video frames to analyze, as part of connected home feature. If an object is partially in a region of interest, Rekognition will tag it as detected if the overlap of the object with the region-of-interest is greater than 20%.
connectedHomeSettings StreamProcessorConnectedHomeSettings
Connected home settings to use on a streaming video. You can use a stream processor for connected home features and select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For more information, see the ConnectedHome section of StreamProcessorSettings .
dataSharingPreference StreamProcessorDataSharingPreference
Allows you to opt in or opt out to share data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams. For more information, see StreamProcessorDataSharingPreference .
faceSearchSettings StreamProcessorFaceSearchSettings
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. For more information regarding the contents of the parameters, see FaceSearchSettings .
kinesisDataStream StreamProcessorKinesisDataStream
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. This is the Amazon Kinesis Data Streams instance to which the Amazon Rekognition stream processor streams the analysis results. This must be created within the constraints specified at KinesisDataStream .
kmsKeyId string
The KMS key that is used by Rekognition to encrypt any intermediate customer metadata and store in the customer's S3 bucket.
name string
Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor.
notificationChannel StreamProcessorNotificationChannel
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
polygonRegionsOfInterest StreamProcessorPoint[][]
The PolygonRegionsOfInterest specifies a set of polygon areas of interest in the video frames to analyze, as part of connected home feature. Each polygon is in turn, an ordered list of Point
s3Destination StreamProcessorS3Destination
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. For more information, see the S3Destination section of StreamProcessorOutput .
tags Tag[]
An array of key-value pairs to apply to this resource.
kinesis_video_stream This property is required. StreamProcessorKinesisVideoStreamArgs
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. For more information, see KinesisVideoStream .
role_arn This property is required. str
ARN of the IAM role that allows access to the stream processor, and provides Rekognition read permissions for KVS stream and write permissions to S3 bucket and SNS topic.
bounding_box_regions_of_interest Sequence[StreamProcessorBoundingBoxArgs]
The BoundingBoxRegionsOfInterest specifies an array of bounding boxes of interest in the video frames to analyze, as part of connected home feature. If an object is partially in a region of interest, Rekognition will tag it as detected if the overlap of the object with the region-of-interest is greater than 20%.
connected_home_settings StreamProcessorConnectedHomeSettingsArgs
Connected home settings to use on a streaming video. You can use a stream processor for connected home features and select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For more information, see the ConnectedHome section of StreamProcessorSettings .
data_sharing_preference StreamProcessorDataSharingPreferenceArgs
Allows you to opt in or opt out to share data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams. For more information, see StreamProcessorDataSharingPreference .
face_search_settings StreamProcessorFaceSearchSettingsArgs
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. For more information regarding the contents of the parameters, see FaceSearchSettings .
kinesis_data_stream StreamProcessorKinesisDataStreamArgs
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. This is the Amazon Kinesis Data Streams instance to which the Amazon Rekognition stream processor streams the analysis results. This must be created within the constraints specified at KinesisDataStream .
kms_key_id str
The KMS key that is used by Rekognition to encrypt any intermediate customer metadata and store in the customer's S3 bucket.
name str
Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor.
notification_channel StreamProcessorNotificationChannelArgs
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
polygon_regions_of_interest Sequence[Sequence[StreamProcessorPointArgs]]
The PolygonRegionsOfInterest specifies a set of polygon areas of interest in the video frames to analyze, as part of connected home feature. Each polygon is in turn, an ordered list of Point
s3_destination StreamProcessorS3DestinationArgs
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. For more information, see the S3Destination section of StreamProcessorOutput .
tags Sequence[TagArgs]
An array of key-value pairs to apply to this resource.
kinesisVideoStream This property is required. Property Map
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. For more information, see KinesisVideoStream .
roleArn This property is required. String
ARN of the IAM role that allows access to the stream processor, and provides Rekognition read permissions for KVS stream and write permissions to S3 bucket and SNS topic.
boundingBoxRegionsOfInterest List<Property Map>
The BoundingBoxRegionsOfInterest specifies an array of bounding boxes of interest in the video frames to analyze, as part of connected home feature. If an object is partially in a region of interest, Rekognition will tag it as detected if the overlap of the object with the region-of-interest is greater than 20%.
connectedHomeSettings Property Map
Connected home settings to use on a streaming video. You can use a stream processor for connected home features and select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For more information, see the ConnectedHome section of StreamProcessorSettings .
dataSharingPreference Property Map
Allows you to opt in or opt out to share data with Rekognition to improve model performance. You can choose this option at the account level or on a per-stream basis. Note that if you opt out at the account level this setting is ignored on individual streams. For more information, see StreamProcessorDataSharingPreference .
faceSearchSettings Property Map
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. For more information regarding the contents of the parameters, see FaceSearchSettings .
kinesisDataStream Property Map
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. This is the Amazon Kinesis Data Streams instance to which the Amazon Rekognition stream processor streams the analysis results. This must be created within the constraints specified at KinesisDataStream .
kmsKeyId String
The KMS key that is used by Rekognition to encrypt any intermediate customer metadata and store in the customer's S3 bucket.
name String
Name of the stream processor. It's an identifier you assign to the stream processor. You can use it to manage the stream processor.
notificationChannel Property Map
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .
polygonRegionsOfInterest List<List<Property Map>>
The PolygonRegionsOfInterest specifies a set of polygon areas of interest in the video frames to analyze, as part of connected home feature. Each polygon is in turn, an ordered list of Point
s3Destination Property Map
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. For more information, see the S3Destination section of StreamProcessorOutput .
tags List<Property Map>
An array of key-value pairs to apply to this resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the StreamProcessor resource produces the following output properties:

Arn string
Amazon Resource Name for the newly created stream processor.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Current status of the stream processor.
StatusMessage string
Detailed status message about the stream processor.
Arn string
Amazon Resource Name for the newly created stream processor.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Current status of the stream processor.
StatusMessage string
Detailed status message about the stream processor.
arn String
Amazon Resource Name for the newly created stream processor.
id String
The provider-assigned unique ID for this managed resource.
status String
Current status of the stream processor.
statusMessage String
Detailed status message about the stream processor.
arn string
Amazon Resource Name for the newly created stream processor.
id string
The provider-assigned unique ID for this managed resource.
status string
Current status of the stream processor.
statusMessage string
Detailed status message about the stream processor.
arn str
Amazon Resource Name for the newly created stream processor.
id str
The provider-assigned unique ID for this managed resource.
status str
Current status of the stream processor.
status_message str
Detailed status message about the stream processor.
arn String
Amazon Resource Name for the newly created stream processor.
id String
The provider-assigned unique ID for this managed resource.
status String
Current status of the stream processor.
statusMessage String
Detailed status message about the stream processor.

Supporting Types

StreamProcessorBoundingBox
, StreamProcessorBoundingBoxArgs

Height This property is required. double
Height of the bounding box as a ratio of the overall image height.
Left This property is required. double
Left coordinate of the bounding box as a ratio of overall image width.
Top This property is required. double
Top coordinate of the bounding box as a ratio of overall image height.
Width This property is required. double
Width of the bounding box as a ratio of the overall image width.
Height This property is required. float64
Height of the bounding box as a ratio of the overall image height.
Left This property is required. float64
Left coordinate of the bounding box as a ratio of overall image width.
Top This property is required. float64
Top coordinate of the bounding box as a ratio of overall image height.
Width This property is required. float64
Width of the bounding box as a ratio of the overall image width.
height This property is required. Double
Height of the bounding box as a ratio of the overall image height.
left This property is required. Double
Left coordinate of the bounding box as a ratio of overall image width.
top This property is required. Double
Top coordinate of the bounding box as a ratio of overall image height.
width This property is required. Double
Width of the bounding box as a ratio of the overall image width.
height This property is required. number
Height of the bounding box as a ratio of the overall image height.
left This property is required. number
Left coordinate of the bounding box as a ratio of overall image width.
top This property is required. number
Top coordinate of the bounding box as a ratio of overall image height.
width This property is required. number
Width of the bounding box as a ratio of the overall image width.
height This property is required. float
Height of the bounding box as a ratio of the overall image height.
left This property is required. float
Left coordinate of the bounding box as a ratio of overall image width.
top This property is required. float
Top coordinate of the bounding box as a ratio of overall image height.
width This property is required. float
Width of the bounding box as a ratio of the overall image width.
height This property is required. Number
Height of the bounding box as a ratio of the overall image height.
left This property is required. Number
Left coordinate of the bounding box as a ratio of overall image width.
top This property is required. Number
Top coordinate of the bounding box as a ratio of overall image height.
width This property is required. Number
Width of the bounding box as a ratio of the overall image width.

StreamProcessorConnectedHomeSettings
, StreamProcessorConnectedHomeSettingsArgs

Labels This property is required. List<string>
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
MinConfidence double
Minimum object class match confidence score that must be met to return a result for a recognized object.
Labels This property is required. []string
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
MinConfidence float64
Minimum object class match confidence score that must be met to return a result for a recognized object.
labels This property is required. List<String>
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
minConfidence Double
Minimum object class match confidence score that must be met to return a result for a recognized object.
labels This property is required. string[]
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
minConfidence number
Minimum object class match confidence score that must be met to return a result for a recognized object.
labels This property is required. Sequence[str]
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
min_confidence float
Minimum object class match confidence score that must be met to return a result for a recognized object.
labels This property is required. List<String>
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: "PERSON", "PET", "PACKAGE", and "ALL".
minConfidence Number
Minimum object class match confidence score that must be met to return a result for a recognized object.

StreamProcessorDataSharingPreference
, StreamProcessorDataSharingPreferenceArgs

OptIn This property is required. bool
Flag to enable data-sharing
OptIn This property is required. bool
Flag to enable data-sharing
optIn This property is required. Boolean
Flag to enable data-sharing
optIn This property is required. boolean
Flag to enable data-sharing
opt_in This property is required. bool
Flag to enable data-sharing
optIn This property is required. Boolean
Flag to enable data-sharing

StreamProcessorFaceSearchSettings
, StreamProcessorFaceSearchSettingsArgs

CollectionId This property is required. string
The ID of a collection that contains faces that you want to search for.
FaceMatchThreshold double
Minimum face match confidence score percentage that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted.
CollectionId This property is required. string
The ID of a collection that contains faces that you want to search for.
FaceMatchThreshold float64
Minimum face match confidence score percentage that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted.
collectionId This property is required. String
The ID of a collection that contains faces that you want to search for.
faceMatchThreshold Double
Minimum face match confidence score percentage that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted.
collectionId This property is required. string
The ID of a collection that contains faces that you want to search for.
faceMatchThreshold number
Minimum face match confidence score percentage that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted.
collection_id This property is required. str
The ID of a collection that contains faces that you want to search for.
face_match_threshold float
Minimum face match confidence score percentage that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted.
collectionId This property is required. String
The ID of a collection that contains faces that you want to search for.
faceMatchThreshold Number
Minimum face match confidence score percentage that must be met to return a result for a recognized face. The default is 80. 0 is the lowest confidence. 100 is the highest confidence. Values between 0 and 100 are accepted.

StreamProcessorKinesisDataStream
, StreamProcessorKinesisDataStreamArgs

Arn This property is required. string
ARN of the Kinesis Data Stream stream.
Arn This property is required. string
ARN of the Kinesis Data Stream stream.
arn This property is required. String
ARN of the Kinesis Data Stream stream.
arn This property is required. string
ARN of the Kinesis Data Stream stream.
arn This property is required. str
ARN of the Kinesis Data Stream stream.
arn This property is required. String
ARN of the Kinesis Data Stream stream.

StreamProcessorKinesisVideoStream
, StreamProcessorKinesisVideoStreamArgs

Arn This property is required. string
ARN of the Kinesis Video Stream that streams the source video.
Arn This property is required. string
ARN of the Kinesis Video Stream that streams the source video.
arn This property is required. String
ARN of the Kinesis Video Stream that streams the source video.
arn This property is required. string
ARN of the Kinesis Video Stream that streams the source video.
arn This property is required. str
ARN of the Kinesis Video Stream that streams the source video.
arn This property is required. String
ARN of the Kinesis Video Stream that streams the source video.

StreamProcessorNotificationChannel
, StreamProcessorNotificationChannelArgs

Arn This property is required. string
ARN of the SNS topic.
Arn This property is required. string
ARN of the SNS topic.
arn This property is required. String
ARN of the SNS topic.
arn This property is required. string
ARN of the SNS topic.
arn This property is required. str
ARN of the SNS topic.
arn This property is required. String
ARN of the SNS topic.

StreamProcessorPoint
, StreamProcessorPointArgs

X This property is required. double
The X coordinate of the point.
Y This property is required. double
The Y coordinate of the point.
X This property is required. float64
The X coordinate of the point.
Y This property is required. float64
The Y coordinate of the point.
x This property is required. Double
The X coordinate of the point.
y This property is required. Double
The Y coordinate of the point.
x This property is required. number
The X coordinate of the point.
y This property is required. number
The Y coordinate of the point.
x This property is required. float
The X coordinate of the point.
y This property is required. float
The Y coordinate of the point.
x This property is required. Number
The X coordinate of the point.
y This property is required. Number
The Y coordinate of the point.

StreamProcessorS3Destination
, StreamProcessorS3DestinationArgs

BucketName This property is required. string
Name of the S3 bucket.
ObjectKeyPrefix string
The object key prefix path where the results will be stored. Default is no prefix path
BucketName This property is required. string
Name of the S3 bucket.
ObjectKeyPrefix string
The object key prefix path where the results will be stored. Default is no prefix path
bucketName This property is required. String
Name of the S3 bucket.
objectKeyPrefix String
The object key prefix path where the results will be stored. Default is no prefix path
bucketName This property is required. string
Name of the S3 bucket.
objectKeyPrefix string
The object key prefix path where the results will be stored. Default is no prefix path
bucket_name This property is required. str
Name of the S3 bucket.
object_key_prefix str
The object key prefix path where the results will be stored. Default is no prefix path
bucketName This property is required. String
Name of the S3 bucket.
objectKeyPrefix String
The object key prefix path where the results will be stored. Default is no prefix path

Tag
, TagArgs

Key This property is required. string
The key name of the tag
Value This property is required. string
The value of the tag
Key This property is required. string
The key name of the tag
Value This property is required. string
The value of the tag
key This property is required. String
The key name of the tag
value This property is required. String
The value of the tag
key This property is required. string
The key name of the tag
value This property is required. string
The value of the tag
key This property is required. str
The key name of the tag
value This property is required. str
The value of the tag
key This property is required. String
The key name of the tag
value This property is required. String
The value of the tag

Package Details

Repository
AWS Native pulumi/pulumi-aws-native
License
Apache-2.0

We recommend new projects start with resources from the AWS provider.

AWS Cloud Control v1.27.0 published on Monday, Apr 14, 2025 by Pulumi