interface OutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ElementalInference.CfnFeed.OutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awselementalinference#CfnFeed_OutputConfigProperty |
Java | software.amazon.awscdk.services.elementalinference.CfnFeed.OutputConfigProperty |
Python | aws_cdk.aws_elementalinference.CfnFeed.OutputConfigProperty |
TypeScript | aws-cdk-lib » aws_elementalinference » CfnFeed » OutputConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elementalinference as elementalinference } from 'aws-cdk-lib';
const outputConfigProperty: elementalinference.CfnFeed.OutputConfigProperty = {
clipping: {
callbackMetadata: 'callbackMetadata',
dataSourceConfiguration: {
fixtureId: 'fixtureId',
},
},
cropping: {
templateGroups: [{
name: 'name',
templateUris: ['templateUris'],
}],
},
subtitling: {
language: 'language',
// the properties below are optional
aspectRatio: {
height: 123,
width: 123,
},
dictionary: 'dictionary',
profanityFilter: 'profanityFilter',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| clipping? | IResolvable | Clipping | |
| cropping? | IResolvable | Cropping | |
| subtitling? | IResolvable | Subtitling |
clipping?
Type:
IResolvable | Clipping
(optional)
cropping?
Type:
IResolvable | Cropping
(optional)
subtitling?
Type:
IResolvable | Subtitling
(optional)

.NET
Go
Java
Python
TypeScript