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



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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



598
599
600
# File 'gems/aws-sdk-bedrockdataautomationruntime/lib/aws-sdk-bedrockdataautomationruntime/types.rb', line 598

def unknown
  @unknown
end