interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnBrowserCustomPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnBrowserCustomPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnBrowserCustomPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnBrowserCustomPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnBrowserCustomPropsMixin » 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 { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const s3LocationProperty: bedrockagentcore_mixins.CfnBrowserCustomPropsMixin.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
(optional)
The S3 location bucket name.
prefix?
Type:
string
(optional)
The S3 location object prefix.

.NET
Go
Java
Python
TypeScript