Class: Aws::MediaTailor::Types::SegmentDeliveryConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::SegmentDeliveryConfiguration
- Defined in:
- gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb
Overview
When making an API call, you may pass SegmentDeliveryConfiguration data as a hash:
{
base_url: "__string",
name: "__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 https://example.com/some/path. To use a relative URL specify the relative path, such as /some/path*.
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 https://example.com/some/path. To use a relative URL specify the relative path, such as /some/path*.
3697 3698 3699 3700 3701 3702 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 3697 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.
3697 3698 3699 3700 3701 3702 |
# File 'gems/aws-sdk-mediatailor/lib/aws-sdk-mediatailor/types.rb', line 3697 class SegmentDeliveryConfiguration < Struct.new( :base_url, :name) SENSITIVE = [] include Aws::Structure end |