interface FileSystemReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EFS.FileSystemReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsefs#FileSystemReference |
Java | software.amazon.awscdk.interfaces.efs.FileSystemReference |
Python | aws_cdk.interfaces.aws_efs.FileSystemReference |
TypeScript | aws-cdk-lib » interfaces » aws_efs » FileSystemReference |
A reference to a FileSystem 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 fileSystemReference: interfaces_aws_efs.FileSystemReference = {
fileSystemArn: 'fileSystemArn',
fileSystemId: 'fileSystemId',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | The ARN of the FileSystem resource. |
| file | string | The FileSystemId of the FileSystem resource. |
fileSystemArn
Type:
string
The ARN of the FileSystem resource.
fileSystemId
Type:
string
The FileSystemId of the FileSystem resource.

.NET
Go
Java
Python
TypeScript