Class: Aws::BedrockDataAutomationRuntime::Types::VideoSegmentConfiguration

Inherits:
Struct
  • Object
show all
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

TimestampSegment, Unknown

Defined Under Namespace

Classes: TimestampSegment, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#timestamp_segmentTypes::TimestampSegment

Timestamp segment



608
609
610
611
612
613
614
615
616
617
# File 'gems/aws-sdk-bedrockdataautomationruntime/lib/aws-sdk-bedrockdataautomationruntime/types.rb', line 608

class VideoSegmentConfiguration < Struct.new(
  :timestamp_segment,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class TimestampSegment < VideoSegmentConfiguration; end
  class Unknown < VideoSegmentConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



608
609
610
# File 'gems/aws-sdk-bedrockdataautomationruntime/lib/aws-sdk-bedrockdataautomationruntime/types.rb', line 608

def unknown
  @unknown
end