interface ModelInvocationJobS3InputDataConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnModelInvocationJob.ModelInvocationJobS3InputDataConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnModelInvocationJob_ModelInvocationJobS3InputDataConfigProperty |
Java | software.amazon.awscdk.services.bedrock.CfnModelInvocationJob.ModelInvocationJobS3InputDataConfigProperty |
Python | aws_cdk.aws_bedrock.CfnModelInvocationJob.ModelInvocationJobS3InputDataConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnModelInvocationJob » ModelInvocationJobS3InputDataConfigProperty |
Contains the configuration of the S3 location of the input data.
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 modelInvocationJobS3InputDataConfigProperty: bedrock.CfnModelInvocationJob.ModelInvocationJobS3InputDataConfigProperty = {
s3Uri: 's3Uri',
// the properties below are optional
s3BucketOwner: 's3BucketOwner',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The S3 location of the input data. |
| s3 | string | The ID of the AWS account that owns the S3 bucket containing the input data. |
s3Uri
Type:
string
The S3 location of the input data.
s3BucketOwner?
Type:
string
(optional)
The ID of the AWS account that owns the S3 bucket containing the input data.

.NET
Go
Java
Python
TypeScript