Class: Aws::MediaTailor::Types::SegmentDeliveryConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::SegmentDeliveryConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediatailor/types.rb
Overview
The segment delivery configuration settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_url ⇒ String
The base URL of the host or path of the segment delivery server that you’re using to serve segments.
-
#name ⇒ String
A unique identifier used to distinguish between multiple segment delivery configurations in a source location.
Instance Attribute Details
#base_url ⇒ String
The base URL of the host or path of the segment delivery server that you’re using to serve segments. This is typically a content delivery network (CDN). The URL can be absolute or relative. To use an absolute URL include the protocol, such as ‘example.com/some/path`. To use a relative URL specify the relative path, such as `/some/path*`.
3772 3773 3774 3775 3776 3777 |
# File 'lib/aws-sdk-mediatailor/types.rb', line 3772 class SegmentDeliveryConfiguration < Struct.new( :base_url, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A unique identifier used to distinguish between multiple segment delivery configurations in a source location.
3772 3773 3774 3775 3776 3777 |
# File 'lib/aws-sdk-mediatailor/types.rb', line 3772 class SegmentDeliveryConfiguration < Struct.new( :base_url, :name) SENSITIVE = [] include Aws::Structure end |