Class: Aws::MediaLive::Types::MsSmoothOutputSettings

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

Overview

Note:

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

{
  h265_packaging_type: "HEV1", # accepts HEV1, HVC1
  name_modifier: "__string",
}

Ms Smooth Output Settings

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#h265_packaging_typeString

Only applicable when this output is referencing an H.265 video description. Specifies whether MP4 segments should be packaged as HEV1 or HVC1.

Returns:

  • (String)


12971
12972
12973
12974
12975
12976
# File 'lib/aws-sdk-medialive/types.rb', line 12971

class MsSmoothOutputSettings < Struct.new(
  :h265_packaging_type,
  :name_modifier)
  SENSITIVE = []
  include Aws::Structure
end

#name_modifierString

String concatenated to the end of the destination filename. Required for multiple outputs of the same type.

Returns:

  • (String)


12971
12972
12973
12974
12975
12976
# File 'lib/aws-sdk-medialive/types.rb', line 12971

class MsSmoothOutputSettings < Struct.new(
  :h265_packaging_type,
  :name_modifier)
  SENSITIVE = []
  include Aws::Structure
end