interface S3FilesAccessPointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnRuntimePropsMixin.S3FilesAccessPointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnRuntimePropsMixin_S3FilesAccessPointConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnRuntimePropsMixin.S3FilesAccessPointConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnRuntimePropsMixin.S3FilesAccessPointConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnRuntimePropsMixin » S3FilesAccessPointConfigurationProperty |
Configuration for S3 Files access point filesystem.
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 s3FilesAccessPointConfigurationProperty: bedrockagentcore.CfnRuntimePropsMixin.S3FilesAccessPointConfigurationProperty = {
accessPointArn: 'accessPointArn',
mountPath: 'mountPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | ARN of the S3 Files access point. |
| mount | string | Mount path for filesystem configuration. |
accessPointArn?
Type:
string
(optional)
ARN of the S3 Files access point.
mountPath?
Type:
string
(optional)
Mount path for filesystem configuration.

.NET
Go
Java
Python
TypeScript