interface CustomOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnFunction.CustomOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnFunction_CustomOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnFunction.CustomOutputConfigurationProperty |
Python | aws_cdk.aws_mediatailor.CfnFunction.CustomOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnFunction » CustomOutputConfigurationProperty |
Configuration for custom output functions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const customOutputConfigurationProperty: mediatailor.CfnFunction.CustomOutputConfigurationProperty = {
runtime: 'runtime',
// the properties below are optional
output: {
outputKey: 'output',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| runtime | string | |
| output? | IResolvable | { [string]: string } |
runtime
Type:
string
output?
Type:
IResolvable | { [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript