Interface CfnStreamProcessor.ConnectedHomeSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStreamProcessor.ConnectedHomeSettingsProperty.Jsii$Proxy
Enclosing class:
CfnStreamProcessor

@Stability(Stable) public static interface CfnStreamProcessor.ConnectedHomeSettingsProperty extends software.amazon.jsii.JsiiSerializable
Connected home settings to use on a streaming video.

Defining the settings is required in the request parameter for CreateStreamProcessor . Including this setting in the CreateStreamProcessor request lets you use the stream processor for connected home features. You can then 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 example, if packages and pets are selected, one SNS notification is published the first time a package is detected and one SNS notification is published the first time a pet is detected. An end-of-session summary is also published. For more information, see the ConnectedHome section of StreamProcessorSettings .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.rekognition.*;
 ConnectedHomeSettingsProperty connectedHomeSettingsProperty = ConnectedHomeSettingsProperty.builder()
         .labels(List.of("labels"))
         // the properties below are optional
         .minConfidence(123)
         .build();