interface PoisEndpoint
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.PoisEndpoint |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#PoisEndpoint |
Java | software.amazon.awscdk.services.medialive.alpha.PoisEndpoint |
Python | aws_cdk.aws_medialive_alpha.PoisEndpoint |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป PoisEndpoint |
Connection details for an ESAM POIS (Placement Opportunity Information System) endpoint.
Example
import { StringParameter } from 'aws-cdk-lib/aws-ssm';
declare const stack: Stack;
declare const input: medialive.IInput;
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
declare const poisPassword: StringParameter;
new medialive.Channel(stack, 'Channel', {
inputs: [{ input }],
availSettings: medialive.AvailSettings.esam({
pois: {
url: 'https://pois.example.com/esam',
username: 'pois-user',
password: poisPassword,
},
acquisitionPointId: 'acquisition-point-1',
adAvailOffset: Duration.millis(200),
}),
scte35SegmentationScope: medialive.Scte35SegmentationScope.SCTE35_ENABLED_OUTPUT_GROUPS,
outputGroups: [
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [{ encodes: [video], outputName: 'hls_out' }],
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| url | string | The POIS endpoint URL that MediaLive sends signal conditioning information to. |
| password? | IString | An SSM parameter holding the password for the POIS endpoint. |
| username? | string | The username used to connect to the POIS endpoint. |
url
Type:
string
The POIS endpoint URL that MediaLive sends signal conditioning information to.
password?
Type:
IString
(optional, default: no credentials)
An SSM parameter holding the password for the POIS endpoint.
The channel role is granted read access to the parameter automatically.
username?
Type:
string
(optional, default: no credentials)
The username used to connect to the POIS endpoint.

.NET
Go
Java
Python
TypeScript (