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

.NET
Go
Java
Python
TypeScript