interface IngestEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnChannelPropsMixin.IngestEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnChannelPropsMixin_IngestEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnChannelPropsMixin.IngestEndpointProperty |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnChannelPropsMixin.IngestEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnChannelPropsMixin » 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 { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
const ingestEndpointProperty: mediapackagev2_mixins.CfnChannelPropsMixin.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