interface MountTargetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EFS.MountTargetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsefs#MountTargetReference |
Java | software.amazon.awscdk.interfaces.efs.MountTargetReference |
Python | aws_cdk.interfaces.aws_efs.MountTargetReference |
TypeScript | aws-cdk-lib » interfaces » aws_efs » MountTargetReference |
A reference to a MountTarget resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_efs as interfaces_aws_efs } from 'aws-cdk-lib/interfaces';
const mountTargetReference: interfaces_aws_efs.MountTargetReference = {
mountTargetId: 'mountTargetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| mount | string | The Id of the MountTarget resource. |
mountTargetId
Type:
string
The Id of the MountTarget resource.

.NET
Go
Java
Python
TypeScript