interface ModalityRoutingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataAutomationProjectPropsMixin.ModalityRoutingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataAutomationProjectPropsMixin_ModalityRoutingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataAutomationProjectPropsMixin.ModalityRoutingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataAutomationProjectPropsMixin.ModalityRoutingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataAutomationProjectPropsMixin » ModalityRoutingConfigurationProperty |
This element allows you to set up where JPEG, PNG, MOV, and MP4 files get routed to for processing.
JPEG routing applies to both "JPEG" and "JPG" file extensions.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const modalityRoutingConfigurationProperty: bedrock_mixins.CfnDataAutomationProjectPropsMixin.ModalityRoutingConfigurationProperty = {
jpeg: 'jpeg',
mov: 'mov',
mp4: 'mp4',
png: 'png',
};
Properties
| Name | Type | Description |
|---|---|---|
| jpeg? | string | Sets whether JPEG files are routed to document or image processing. |
| mov? | string | Sets whether MOV files are routed to audio or video processing. |
| mp4? | string | Sets whether MP4 files are routed to audio or video processing. |
| png? | string | Sets whether PNG files are routed to document or image processing. |
jpeg?
Type:
string
(optional)
Sets whether JPEG files are routed to document or image processing.
mov?
Type:
string
(optional)
Sets whether MOV files are routed to audio or video processing.
mp4?
Type:
string
(optional)
Sets whether MP4 files are routed to audio or video processing.
png?
Type:
string
(optional)
Sets whether PNG files are routed to document or image processing.

.NET
Go
Java
Python
TypeScript