interface IngestEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackage.CfnChannelPropsMixin.IngestEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackage#CfnChannelPropsMixin_IngestEndpointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackage.CfnChannelPropsMixin.IngestEndpointProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackage.CfnChannelPropsMixin.IngestEndpointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackage » CfnChannelPropsMixin » 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/cfn-property-mixins';
const ingestEndpointProperty: mediapackage.CfnChannelPropsMixin.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
(optional)
The endpoint identifier.
password?
Type:
string
(optional)
The system-generated password for WebDAV input authentication.
url?
Type:
string
(optional)
The input URL where the source stream should be sent.
username?
Type:
string
(optional)
The system-generated username for WebDAV input authentication.

.NET
Go
Java
Python
TypeScript