Show / Hide Table of Contents

Class CfnSourceLocation.SegmentDeliveryConfigurationProperty

The segment delivery configuration settings.

Inheritance
object
CfnSourceLocation.SegmentDeliveryConfigurationProperty
Implements
CfnSourceLocation.ISegmentDeliveryConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-sourcelocation-segmentdeliveryconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-sourcelocation-segmentdeliveryconfiguration.html

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

string

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* .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-sourcelocation-segmentdeliveryconfiguration.html#cfn-mediatailor-sourcelocation-segmentdeliveryconfiguration-baseurl

Name

A unique identifier used to distinguish between multiple segment delivery configurations in a source location.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-sourcelocation-segmentdeliveryconfiguration.html#cfn-mediatailor-sourcelocation-segmentdeliveryconfiguration-name

Implements

CfnSourceLocation.ISegmentDeliveryConfigurationProperty
Back to top Generated by DocFX