interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnBrowserCustomPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnBrowserCustomPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnBrowserCustomPropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnBrowserCustomPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const s3LocationProperty: bedrockagentcore.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