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)


2951
2952
2953
2954
2955
2956
2957
# File 'lib/aws-sdk-mediaconvert/types.rb', line 2951

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

#formatString

The format of the container

Returns:

  • (String)


2951
2952
2953
2954
2955
2956
2957
# File 'lib/aws-sdk-mediaconvert/types.rb', line 2951

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

#tracksArray<Types::Track>

List of Track objects.

Returns:



2951
2952
2953
2954
2955
2956
2957
# File 'lib/aws-sdk-mediaconvert/types.rb', line 2951

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