interface ModelInvocationJobOutputDataConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnModelInvocationJob_ModelInvocationJobOutputDataConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty |
Python | aws_cdk.aws_bedrock.CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnModelInvocationJob » ModelInvocationJobOutputDataConfigProperty |
Details about the location of the output of 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 modelInvocationJobOutputDataConfigProperty: bedrock.CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty = {
s3OutputDataConfig: {
s3Uri: 's3Uri',
// the properties below are optional
s3BucketOwner: 's3BucketOwner',
s3EncryptionKeyId: 's3EncryptionKeyId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | Model | Contains the configuration of the S3 location of the output data. |
s3OutputDataConfig
Type:
IResolvable | Model
Contains the configuration of the S3 location of the output data.

.NET
Go
Java
Python
TypeScript