Class: Aws::MediaConvert::Types::Container

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mediaconvert/types.rb

Overview

Information about the container format of the media file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#durationFloat

The duration of the media file in seconds.

Returns:

  • (Float)


2937
2938
2939
2940
2941
2942
2943
# File 'lib/aws-sdk-mediaconvert/types.rb', line 2937

class Container < Struct.new(
  :duration,
  :format,
  :tracks)
  SENSITIVE = []
  include Aws::Structure
end

#formatString

The format of the container

Returns:

  • (String)


2937
2938
2939
2940
2941
2942
2943
# File 'lib/aws-sdk-mediaconvert/types.rb', line 2937

class Container < Struct.new(
  :duration,
  :format,
  :tracks)
  SENSITIVE = []
  include Aws::Structure
end

#tracksArray<Types::Track>

List of Track objects.

Returns:



2937
2938
2939
2940
2941
2942
2943
# File 'lib/aws-sdk-mediaconvert/types.rb', line 2937

class Container < Struct.new(
  :duration,
  :format,
  :tracks)
  SENSITIVE = []
  include Aws::Structure
end