Class: Aws::MediaTailor::Types::HttpPackageConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::HttpPackageConfiguration
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
The HTTP package configuration properties for the requested VOD source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#path ⇒ String
The relative path to the URL for this VOD source.
-
#source_group ⇒ String
The name of the source group.
-
#type ⇒ String
The streaming protocol for this package configuration.
Instance Attribute Details
#path ⇒ String
The relative path to the URL for this VOD source. This is combined
with SourceLocation::HttpConfiguration::BaseUrl
to form a valid
URL.
2360 2361 2362 2363 2364 2365 2366 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2360 class HttpPackageConfiguration < Struct.new( :path, :source_group, :type) SENSITIVE = [] include Aws::Structure end |
#source_group ⇒ String
The name of the source group. This has to match one of the
Channel::Outputs::SourceGroup
.
2360 2361 2362 2363 2364 2365 2366 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2360 class HttpPackageConfiguration < Struct.new( :path, :source_group, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The streaming protocol for this package configuration. Supported
values are HLS
and DASH
.
2360 2361 2362 2363 2364 2365 2366 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 2360 class HttpPackageConfiguration < Struct.new( :path, :source_group, :type) SENSITIVE = [] include Aws::Structure end |