aws-cdk-lib.aws_medialive.CfnChannel.NetworkInputSettingsProperty

interface NetworkInputSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.NetworkInputSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_NetworkInputSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.NetworkInputSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.NetworkInputSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » NetworkInputSettingsProperty

Information about how to connect to the upstream system.

The parent of this entity is InputSettings.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const networkInputSettingsProperty: medialive.CfnChannel.NetworkInputSettingsProperty = {
  hlsInputSettings: {
    bandwidth: 123,
    bufferSegments: 123,
    retries: 123,
    retryInterval: 123,
    scte35Source: 'scte35Source',
  },
  serverValidation: 'serverValidation',
};

Properties

NameTypeDescription
hlsInputSettings?IResolvable | HlsInputSettingsPropertyInformation about how to connect to the upstream system.
serverValidation?stringChecks HTTPS server certificates.

hlsInputSettings?

Type: IResolvable | HlsInputSettingsProperty (optional)

Information about how to connect to the upstream system.


serverValidation?

Type: string (optional)

Checks HTTPS server certificates.

When set to checkCryptographyOnly, cryptography in the certificate is checked, but not the server's name. Certain subdomains (notably S3 buckets that use dots in the bucket name) don't strictly match the corresponding certificate's wildcard pattern and would otherwise cause the channel to error. This setting is ignored for protocols that do not use HTTPS.