interface ModelInvocationJobInputDataConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnModelInvocationJob.ModelInvocationJobInputDataConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnModelInvocationJob_ModelInvocationJobInputDataConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnModelInvocationJob.ModelInvocationJobInputDataConfigProperty |
Python | aws_cdk.aws_bedrock.CfnModelInvocationJob.ModelInvocationJobInputDataConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnModelInvocationJob » ModelInvocationJobInputDataConfigProperty |
Details about the location of the input to the batch inference job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const modelInvocationJobInputDataConfigProperty: bedrock.CfnModelInvocationJob.ModelInvocationJobInputDataConfigProperty = {
s3InputDataConfig: {
s3Uri: 's3Uri',
// the properties below are optional
s3BucketOwner: 's3BucketOwner',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | Model | Contains the configuration of the S3 location of the input data. |
s3InputDataConfig
Type:
IResolvable | Model
Contains the configuration of the S3 location of the input data.

.NET
Go
Java
Python
TypeScript