interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_S3LocationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.S3LocationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.S3LocationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » S3LocationProperty |
S3 Location Configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const s3LocationProperty: bedrockagentcore.CfnRuntime.S3LocationProperty = {
bucket: 'bucket',
prefix: 'prefix',
// the properties below are optional
versionId: 'versionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | S3 bucket name. |
| prefix | string | S3 object key prefix. |
| version | string | S3 object version ID. |
bucket
Type:
string
S3 bucket name.
prefix
Type:
string
S3 object key prefix.
versionId?
Type:
string
(optional)
S3 object version ID.

.NET
Go
Java
Python
TypeScript