Class CfnSourceLocation.SegmentDeliveryConfigurationProperty
The segment delivery configuration settings.
Inherited Members
Namespace: Amazon.CDK.AWS.MediaTailor
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSourceLocation.SegmentDeliveryConfigurationProperty : CfnSourceLocation.ISegmentDeliveryConfigurationProperty
Syntax (vb)
Public Class CfnSourceLocation.SegmentDeliveryConfigurationProperty Implements CfnSourceLocation.ISegmentDeliveryConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaTailor;
var segmentDeliveryConfigurationProperty = new SegmentDeliveryConfigurationProperty {
BaseUrl = "baseUrl",
Name = "name"
};
Synopsis
Constructors
SegmentDeliveryConfigurationProperty() | The segment delivery configuration settings. |
Properties
BaseUrl | The base URL of the host or path of the segment delivery server that you're using to serve segments. |
Name | A unique identifier used to distinguish between multiple segment delivery configurations in a source location. |
Constructors
SegmentDeliveryConfigurationProperty()
The segment delivery configuration settings.
public SegmentDeliveryConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaTailor;
var segmentDeliveryConfigurationProperty = new SegmentDeliveryConfigurationProperty {
BaseUrl = "baseUrl",
Name = "name"
};
Properties
BaseUrl
The base URL of the host or path of the segment delivery server that you're using to serve segments.
public string? BaseUrl { get; set; }
Property Value
Remarks
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*
.
Name
A unique identifier used to distinguish between multiple segment delivery configurations in a source location.
public string? Name { get; set; }