interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnBrowserCustom.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnBrowserCustom_S3LocationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnBrowserCustom.S3LocationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnBrowserCustom.S3LocationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnBrowserCustom » S3LocationProperty |
The S3 location.
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.CfnBrowserCustom.S3LocationProperty = {
bucket: 'bucket',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The S3 location bucket name. |
| prefix | string | The S3 location object prefix. |
bucket
Type:
string
The S3 location bucket name.
prefix
Type:
string
The S3 location object prefix.

.NET
Go
Java
Python
TypeScript