Class CfnChannel.IngestEndpointProperty
The input URL where the source stream should be sent.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaPackageV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnChannel.IngestEndpointProperty : CfnChannel.IIngestEndpointProperty
Syntax (vb)
Public Class CfnChannel.IngestEndpointProperty Implements CfnChannel.IIngestEndpointProperty
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.MediaPackageV2;
var ingestEndpointProperty = new IngestEndpointProperty {
Id = "id",
Url = "url"
};
Synopsis
Constructors
| IngestEndpointProperty() | The input URL where the source stream should be sent. |
Properties
| Id | The identifier associated with the ingest endpoint of the channel. |
| Url | The URL associated with the ingest endpoint of the channel. |
Constructors
IngestEndpointProperty()
The input URL where the source stream should be sent.
public IngestEndpointProperty()
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.MediaPackageV2;
var ingestEndpointProperty = new IngestEndpointProperty {
Id = "id",
Url = "url"
};
Properties
Id
The identifier associated with the ingest endpoint of the channel.
public string? Id { get; set; }
Property Value
Remarks
Url
The URL associated with the ingest endpoint of the channel.
public string? Url { get; set; }