interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimePropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimePropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimePropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimePropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnRuntimePropsMixin » 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/cfn-property-mixins';
const s3LocationProperty: bedrockagentcore.CfnRuntimePropsMixin.S3LocationProperty = {
bucket: 'bucket',
prefix: 'prefix',
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
(optional)
S3 bucket name.
prefix?
Type:
string
(optional)
S3 object key prefix.
versionId?
Type:
string
(optional)
S3 object version ID.

.NET
Go
Java
Python
TypeScript