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

.NET
Go
Java
Python
TypeScript