Class: Aws::Rekognition::Types::StartSegmentDetectionFilters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StartSegmentDetectionFilters
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass StartSegmentDetectionFilters data as a hash:
{
technical_cue_filter: {
min_segment_confidence: 1.0,
},
shot_filter: {
min_segment_confidence: 1.0,
},
}
Filters applied to the technical cue or shot detection segments. For more information, see StartSegmentDetection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#shot_filter ⇒ Types::StartShotDetectionFilter
Filters that are specific to shot detections.
-
#technical_cue_filter ⇒ Types::StartTechnicalCueDetectionFilter
Filters that are specific to technical cues.
Instance Attribute Details
#shot_filter ⇒ Types::StartShotDetectionFilter
Filters that are specific to shot detections.
4943 4944 4945 4946 4947 4948 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4943 class StartSegmentDetectionFilters < Struct.new( :technical_cue_filter, :shot_filter) SENSITIVE = [] include Aws::Structure end |
#technical_cue_filter ⇒ Types::StartTechnicalCueDetectionFilter
Filters that are specific to technical cues.
4943 4944 4945 4946 4947 4948 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4943 class StartSegmentDetectionFilters < Struct.new( :technical_cue_filter, :shot_filter) SENSITIVE = [] include Aws::Structure end |