interface ModelInvocationJobOutputDataConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnModelInvocationJobPropsMixin_ModelInvocationJobOutputDataConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnModelInvocationJobPropsMixin » 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/cfn-property-mixins';
const modelInvocationJobOutputDataConfigProperty: bedrock.CfnModelInvocationJobPropsMixin.ModelInvocationJobOutputDataConfigProperty = {
s3OutputDataConfig: {
s3BucketOwner: 's3BucketOwner',
s3EncryptionKeyId: 's3EncryptionKeyId',
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | Model | Contains the configuration of the S3 location of the output data. |
s3OutputDataConfig?
Type:
IResolvable | Model
(optional)
Contains the configuration of the S3 location of the output data.

.NET
Go
Java
Python
TypeScript