Class: Aws::MediaPackageVod::Types::MssManifest

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

Overview

Note:

When making an API call, you may pass MssManifest data as a hash:

{
  manifest_name: "__string",
  stream_selection: {
    max_video_bits_per_second: 1,
    min_video_bits_per_second: 1,
    stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
  },
}

A Microsoft Smooth Streaming (MSS) manifest configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#manifest_nameString

An optional string to include in the name of the manifest.

Returns:

  • (String)


1621
1622
1623
1624
1625
1626
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1621

class MssManifest < Struct.new(
  :manifest_name,
  :stream_selection)
  SENSITIVE = []
  include Aws::Structure
end

#stream_selectionTypes::StreamSelection

A StreamSelection configuration.



1621
1622
1623
1624
1625
1626
# File 'lib/aws-sdk-mediapackagevod/types.rb', line 1621

class MssManifest < Struct.new(
  :manifest_name,
  :stream_selection)
  SENSITIVE = []
  include Aws::Structure
end