interface IngestEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.CfnChannel.IngestEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnChannel_IngestEndpointProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnChannel.IngestEndpointProperty |
Python | aws_cdk.aws_mediapackagev2.CfnChannel.IngestEndpointProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnChannel » IngestEndpointProperty |
The input URL where the source stream should be sent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const ingestEndpointProperty: mediapackagev2.CfnChannel.IngestEndpointProperty = {
id: 'id',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The identifier associated with the ingest endpoint of the channel. |
| url? | string | The URL associated with the ingest endpoint of the channel. |
id?
Type:
string
(optional)
The identifier associated with the ingest endpoint of the channel.
url?
Type:
string
(optional)
The URL associated with the ingest endpoint of the channel.

.NET
Go
Java
Python
TypeScript