Class: Aws::BedrockDataAutomationRuntime::Types::VideoSegmentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockDataAutomationRuntime::Types::VideoSegmentConfiguration
- Defined in:
- gems/aws-sdk-bedrockdataautomationruntime/lib/aws-sdk-bedrockdataautomationruntime/types.rb
Overview
Note:
VideoSegmentConfiguration is a union - when making an API calls you must set exactly one of the members.
Delimits the segment of the input that will be processed
Direct Known Subclasses
Defined Under Namespace
Classes: TimestampSegment, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#timestamp_segment ⇒ Types::TimestampSegment
Timestamp segment.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#timestamp_segment ⇒ Types::TimestampSegment
Timestamp segment
598 599 600 601 602 603 604 605 606 607 |
# File 'gems/aws-sdk-bedrockdataautomationruntime/lib/aws-sdk-bedrockdataautomationruntime/types.rb', line 598 class VideoSegmentConfiguration < Struct.new( :timestamp_segment, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TimestampSegment < VideoSegmentConfiguration; end class Unknown < VideoSegmentConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
598 599 600 |
# File 'gems/aws-sdk-bedrockdataautomationruntime/lib/aws-sdk-bedrockdataautomationruntime/types.rb', line 598 def unknown @unknown end |