interface EfsAccessPointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnRuntime.EfsAccessPointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnRuntime_EfsAccessPointConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnRuntime.EfsAccessPointConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnRuntime.EfsAccessPointConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnRuntime » EfsAccessPointConfigurationProperty |
Configuration for EFS 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 efsAccessPointConfigurationProperty: bedrockagentcore.CfnRuntime.EfsAccessPointConfigurationProperty = {
accessPointArn: 'accessPointArn',
mountPath: 'mountPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | ARN of the EFS access point. |
| mount | string | Mount path for filesystem configuration. |
accessPointArn
Type:
string
ARN of the EFS access point.
mountPath
Type:
string
Mount path for filesystem configuration.

.NET
Go
Java
Python
TypeScript