interface IngestEndpointProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MediaPackage.CfnChannel.IngestEndpointProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackage#CfnChannel_IngestEndpointProperty | 
  Java | software.amazon.awscdk.services.mediapackage.CfnChannel.IngestEndpointProperty | 
  Python | aws_cdk.aws_mediapackage.CfnChannel.IngestEndpointProperty | 
  TypeScript  | aws-cdk-lib » aws_mediapackage » CfnChannel » IngestEndpointProperty | 
An endpoint for ingesting source content for a channel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackage as mediapackage } from 'aws-cdk-lib';
const ingestEndpointProperty: mediapackage.CfnChannel.IngestEndpointProperty = {
  id: 'id',
  password: 'password',
  url: 'url',
  username: 'username',
};
Properties
| Name | Type | Description | 
|---|---|---|
| id | string | The endpoint identifier. | 
| password | string | The system-generated password for WebDAV input authentication. | 
| url | string | The input URL where the source stream should be sent. | 
| username | string | The system-generated username for WebDAV input authentication. | 
id
Type:
string
The endpoint identifier.
password
Type:
string
The system-generated password for WebDAV input authentication.
url
Type:
string
The input URL where the source stream should be sent.
username
Type:
string
The system-generated username for WebDAV input authentication.

 .NET
 Go
 Java
 Python
 TypeScript