Class CfnStreamProcessor
- All Implemented Interfaces:
IEnvironmentAware,IInspectable,ITaggable,IStreamProcessorRef,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
AWS::Rekognition::StreamProcessor type creates a stream processor used to detect and recognize faces or to detect connected home labels in a streaming video.
Amazon Rekognition Video is a consumer of live video from Amazon Kinesis Video Streams. There are two different settings for stream processors in Amazon Rekognition, one for detecting faces and one for connected home features.
If you are creating a stream processor for detecting faces, you provide a Kinesis video stream (input) and a Kinesis data stream (output). You also specify the face recognition criteria in FaceSearchSettings. For example, the collection containing faces that you want to recognize.
If you are creating a stream processor for detection of connected home labels, you provide a Kinesis video stream for input, and for output an Amazon S3 bucket and an Amazon SNS topic. You can also provide a KMS key ID to encrypt the data sent to your Amazon S3 bucket. You specify what you want to detect in ConnectedHomeSettings, such as people, packages, and pets.
You can also specify where in the frame you want Amazon Rekognition to monitor with BoundingBoxRegionsOfInterest and PolygonRegionsOfInterest. The Name is used to manage the stream processor and it is the identifier for the stream processor. The AWS::Rekognition::StreamProcessor resource creates a stream processor in the same Region where you create the Amazon CloudFormation stack.
For more information, see CreateStreamProcessor .
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.*;
Object polygonRegionsOfInterest;
CfnStreamProcessor cfnStreamProcessor = CfnStreamProcessor.Builder.create(this, "MyCfnStreamProcessor")
.kinesisVideoStream(KinesisVideoStreamProperty.builder()
.arn("arn")
.build())
.roleArn("roleArn")
// the properties below are optional
.boundingBoxRegionsOfInterest(List.of(BoundingBoxProperty.builder()
.height(123)
.left(123)
.top(123)
.width(123)
.build()))
.connectedHomeSettings(ConnectedHomeSettingsProperty.builder()
.labels(List.of("labels"))
// the properties below are optional
.minConfidence(123)
.build())
.dataSharingPreference(DataSharingPreferenceProperty.builder()
.optIn(false)
.build())
.faceSearchSettings(FaceSearchSettingsProperty.builder()
.collectionId("collectionId")
// the properties below are optional
.faceMatchThreshold(123)
.build())
.kinesisDataStream(KinesisDataStreamProperty.builder()
.arn("arn")
.build())
.kmsKeyId("kmsKeyId")
.name("name")
.notificationChannel(NotificationChannelProperty.builder()
.arn("arn")
.build())
.polygonRegionsOfInterest(polygonRegionsOfInterest)
.s3Destination(S3DestinationProperty.builder()
.bucketName("bucketName")
// the properties below are optional
.objectKeyPrefix("objectKeyPrefix")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceIdentifies the bounding box around the label, face, text, or personal protective equipment.static final classA fluent builder forCfnStreamProcessor.static interfaceConnected home settings to use on a streaming video.static interfaceAllows you to opt in or opt out to share data with Rekognition to improve model performance.static interfaceThe input parameters used to recognize faces in a streaming video analyzed by a Amazon Rekognition stream processor.static interfaceAmazon Rekognition Video Stream Processor take as input a Kinesis video stream (Input) and a Kinesis data stream (Output).static interfaceThe Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor.static interfaceThe Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.static interfaceThe X and Y coordinates of a point on an image or video frame.static interfaceThe Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.services.rekognition.IStreamProcessorRef
IStreamProcessorRef.Jsii$Default, IStreamProcessorRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnStreamProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnStreamProcessor(software.amazon.jsii.JsiiObjectRef objRef) CfnStreamProcessor(software.constructs.Construct scope, String id, CfnStreamProcessorProps props) -
Method Summary
Modifier and TypeMethodDescriptionAmazon Resource Name for the newly created stream processor.Current status of the Amazon Rekognition stream processor.Detailed status message about the stream processor.List of BoundingBox objects, each of which denotes a region of interest on screen.Connected home settings to use on a streaming video.Allows you to opt in or opt out to share data with Rekognition to improve model performance.The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor.Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input.The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor.The identifier for your Amazon Key Management Service key (Amazon KMS key).getName()The Name attribute specifies the name of the stream processor and it must be within the constraints described in the Name section of StreamProcessor .The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.A set of ordered lists of Point objects.The ARN of the IAM role that allows access to the stream processor.The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.A reference to a StreamProcessor resource.getTags()Tag Manager which manages the tags for this resource.A set of tags (key-value pairs) that you want to attach to the stream processor.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidList of BoundingBox objects, each of which denotes a region of interest on screen.voidList of BoundingBox objects, each of which denotes a region of interest on screen.voidConnected home settings to use on a streaming video.voidConnected home settings to use on a streaming video.voidAllows you to opt in or opt out to share data with Rekognition to improve model performance.voidAllows you to opt in or opt out to share data with Rekognition to improve model performance.voidsetFaceSearchSettings(IResolvable value) The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor.voidThe input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor.voidsetKinesisDataStream(IResolvable value) Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input.voidAmazon Rekognition's Video Stream Processor takes a Kinesis video stream as input.voidsetKinesisVideoStream(IResolvable value) The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor.voidThe Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor.voidsetKmsKeyId(String value) The identifier for your Amazon Key Management Service key (Amazon KMS key).voidThe Name attribute specifies the name of the stream processor and it must be within the constraints described in the Name section of StreamProcessor .voidThe Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.voidThe Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.voidA set of ordered lists of Point objects.voidsetRoleArn(String value) The ARN of the IAM role that allows access to the stream processor.voidsetS3Destination(IResolvable value) The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.voidThe Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.voidsetTagsRaw(List<CfnTag> value) A set of tags (key-value pairs) that you want to attach to the stream processor.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnStreamProcessor
protected CfnStreamProcessor(software.amazon.jsii.JsiiObjectRef objRef) -
CfnStreamProcessor
protected CfnStreamProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnStreamProcessor
@Stability(Stable) public CfnStreamProcessor(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnStreamProcessorProps props) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrArn
Amazon Resource Name for the newly created stream processor. -
getAttrStatus
Current status of the Amazon Rekognition stream processor. -
getAttrStatusMessage
Detailed status message about the stream processor. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getStreamProcessorRef
A reference to a StreamProcessor resource.- Specified by:
getStreamProcessorRefin interfaceIStreamProcessorRef
-
getTags
Tag Manager which manages the tags for this resource. -
getKinesisVideoStream
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor.Returns union: either
IResolvableorCfnStreamProcessor.KinesisVideoStreamProperty -
setKinesisVideoStream
The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. -
setKinesisVideoStream
@Stability(Stable) public void setKinesisVideoStream(@NotNull CfnStreamProcessor.KinesisVideoStreamProperty value) The Kinesis video stream that provides the source of the streaming video for an Amazon Rekognition Video stream processor. -
getRoleArn
The ARN of the IAM role that allows access to the stream processor. -
setRoleArn
The ARN of the IAM role that allows access to the stream processor. -
getBoundingBoxRegionsOfInterest
List of BoundingBox objects, each of which denotes a region of interest on screen.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStreamProcessor.BoundingBoxProperty> -
setBoundingBoxRegionsOfInterest
List of BoundingBox objects, each of which denotes a region of interest on screen. -
setBoundingBoxRegionsOfInterest
List of BoundingBox objects, each of which denotes a region of interest on screen. -
getConnectedHomeSettings
Connected home settings to use on a streaming video.Returns union: either
IResolvableorCfnStreamProcessor.ConnectedHomeSettingsProperty -
setConnectedHomeSettings
Connected home settings to use on a streaming video. -
setConnectedHomeSettings
@Stability(Stable) public void setConnectedHomeSettings(@Nullable CfnStreamProcessor.ConnectedHomeSettingsProperty value) Connected home settings to use on a streaming video. -
getDataSharingPreference
Allows you to opt in or opt out to share data with Rekognition to improve model performance.Returns union: either
IResolvableorCfnStreamProcessor.DataSharingPreferenceProperty -
setDataSharingPreference
Allows you to opt in or opt out to share data with Rekognition to improve model performance. -
setDataSharingPreference
@Stability(Stable) public void setDataSharingPreference(@Nullable CfnStreamProcessor.DataSharingPreferenceProperty value) Allows you to opt in or opt out to share data with Rekognition to improve model performance. -
getFaceSearchSettings
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor.Returns union: either
IResolvableorCfnStreamProcessor.FaceSearchSettingsProperty -
setFaceSearchSettings
The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. -
setFaceSearchSettings
@Stability(Stable) public void setFaceSearchSettings(@Nullable CfnStreamProcessor.FaceSearchSettingsProperty value) The input parameters used to recognize faces in a streaming video analyzed by an Amazon Rekognition stream processor. -
getKinesisDataStream
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input.Returns union: either
IResolvableorCfnStreamProcessor.KinesisDataStreamProperty -
setKinesisDataStream
Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. -
setKinesisDataStream
@Stability(Stable) public void setKinesisDataStream(@Nullable CfnStreamProcessor.KinesisDataStreamProperty value) Amazon Rekognition's Video Stream Processor takes a Kinesis video stream as input. -
getKmsKeyId
The identifier for your Amazon Key Management Service key (Amazon KMS key). -
setKmsKeyId
The identifier for your Amazon Key Management Service key (Amazon KMS key). -
getName
The Name attribute specifies the name of the stream processor and it must be within the constraints described in the Name section of StreamProcessor . If you don't specify a name, Amazon CloudFormation generates a unique ID and uses that ID for the stream processor name. -
setName
The Name attribute specifies the name of the stream processor and it must be within the constraints described in the Name section of StreamProcessor . If you don't specify a name, Amazon CloudFormation generates a unique ID and uses that ID for the stream processor name. -
getNotificationChannel
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.Returns union: either
IResolvableorCfnStreamProcessor.NotificationChannelProperty -
setNotificationChannel
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. -
setNotificationChannel
@Stability(Stable) public void setNotificationChannel(@Nullable CfnStreamProcessor.NotificationChannelProperty value) The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation. -
getPolygonRegionsOfInterest
A set of ordered lists of Point objects. Each entry of the set contains a polygon denoting a region of interest on the screen. Each polygon is an ordered list of Point objects. For more information, see the Polygon field of RegionOfInterest . -
setPolygonRegionsOfInterest
A set of ordered lists of Point objects. Each entry of the set contains a polygon denoting a region of interest on the screen. Each polygon is an ordered list of Point objects. For more information, see the Polygon field of RegionOfInterest . -
getS3Destination
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation.Returns union: either
IResolvableorCfnStreamProcessor.S3DestinationProperty -
setS3Destination
The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. -
setS3Destination
@Stability(Stable) public void setS3Destination(@Nullable CfnStreamProcessor.S3DestinationProperty value) The Amazon S3 bucket location to which Amazon Rekognition publishes the detailed inference results of a video analysis operation. -
getTagsRaw
A set of tags (key-value pairs) that you want to attach to the stream processor. -
setTagsRaw
A set of tags (key-value pairs) that you want to attach to the stream processor.
-