interface RouterSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnInput.RouterSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnInput_RouterSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnInput.RouterSettingsProperty |
Python | aws_cdk.aws_medialive.CfnInput.RouterSettingsProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnInput » RouterSettingsProperty |
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 routerSettingsProperty: medialive.CfnInput.RouterSettingsProperty = {
destinations: [{
availabilityZoneName: 'availabilityZoneName',
}],
encryptionType: 'encryptionType',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations? | IResolvable | (IResolvable | Router)[] | |
| encryption | string | |
| secret | string |
destinations?
Type:
IResolvable | (IResolvable | Router)[]
(optional)
encryptionType?
Type:
string
(optional)
secretArn?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript