class ServerValidation
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.ServerValidation |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#ServerValidation |
Java | software.amazon.awscdk.services.medialive.alpha.ServerValidation |
Python | aws_cdk.aws_medialive_alpha.ServerValidation |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป ServerValidation |
Server validation mode for HTTPS inputs.
Example
declare const stack: Stack;
declare const input: medialive.IInput;
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
new medialive.Channel(stack, 'Channel', {
inputs: [{
input,
networkInputSettings: {
serverValidation: medialive.ServerValidation.CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME,
hlsInputSettings: {
bandwidth: Bitrate.mbps(5),
scte35Source: medialive.HlsScte35Source.MANIFEST,
},
},
logicalInterfaceNames: ['eth0', 'eth1'],
}],
outputGroups: [
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [{ encodes: [video], outputName: 'hls_out' }],
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME | Server | Check cryptography and server name. |
| static CHECK_CRYPTOGRAPHY_ONLY | Server | Check cryptography only (useful for S3 bucket names with dots). |
value
Type:
string
The underlying string value passed to CloudFormation.
static CHECK_CRYPTOGRAPHY_AND_VALIDATE_NAME
Type:
Server
Check cryptography and server name.
static CHECK_CRYPTOGRAPHY_ONLY
Type:
Server
Check cryptography only (useful for S3 bucket names with dots).
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): ServerValidation
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (