interface S3FilesAccessPointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.S3FilesAccessPointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_S3FilesAccessPointConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.S3FilesAccessPointConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.S3FilesAccessPointConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » 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-lib';
const s3FilesAccessPointConfigurationProperty: bedrockagentcore.CfnRuntime.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
ARN of the S3 Files access point.
mountPath
Type:
string
Mount path for filesystem configuration.

.NET
Go
Java
Python
TypeScript