interface InputSecurityGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputSecurityGroupProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputSecurityGroupProps |
Java | software.amazon.awscdk.services.medialive.alpha.InputSecurityGroupProps |
Python | aws_cdk.aws_medialive_alpha.InputSecurityGroupProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputSecurityGroupProps |
Properties for creating a MediaLive Input Security Group.
Example
declare const stack: Stack;
declare const passphrase: secretsmanager.ISecret;
const sg = new medialive.InputSecurityGroup(stack, 'SrtSg', {
allowlistRules: ['203.0.113.0/24'],
});
new medialive.Input(stack, 'SrtListenerInput', {
inputName: 'srt-listener',
input: medialive.InputConfiguration.srtListener({
inputSecurityGroups: [sg],
minimumLatency: Duration.millis(500),
streamId: 'my-stream-id',
decryption: {
algorithm: medialive.SrtDecryptionAlgorithm.AES256,
passphraseSecret: passphrase,
},
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| allowlist | string[] | The list of IPv4 CIDR addresses to allow. |
| tags? | { [string]: string } | Tags to add to the input security group. |
allowlistRules
Type:
string[]
The list of IPv4 CIDR addresses to allow.
tags?
Type:
{ [string]: string }
(optional, default: no tags)
Tags to add to the input security group.

.NET
Go
Java
Python
TypeScript (