Values.CreateLocationFsxLustreRequestSourceCreates a transfer location for an Amazon FSx for Lustre file system. DataSync can use this location as a source or destination for transferring data. Before you begin, make sure that you understand how DataSync accesses FSx for Lustre file systems.
type nonrec t = {fsxFilesystemArn : FsxFilesystemArn.t;Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.
*)securityGroupArns : Ec2SecurityGroupArnList.t;Specifies the Amazon Resource Names (ARNs) of up to five security groups that provide access to your FSx for Lustre file system. The security groups must be able to access the file system's ports. The file system must also allow access from the security groups. For information about file system access, see the Amazon FSx for Lustre User Guide .
*)subdirectory : FsxLustreSubdirectory.t option;Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories. When the location is used as a source, DataSync reads data from the mount path. When the location is used as a destination, DataSync writes data to the mount path. If you don't include this parameter, DataSync uses the file system's root directory (/).
*)}val make :
?subdirectory:??? ->
?tags:??? ->
fsxFilesystemArn:FsxFilesystemArn.t ->
securityGroupArns:Ec2SecurityGroupArnList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `String of Ec2SecurityGroupArn.t
| `Structure of (string * [> `String of TagKey.t ]) list ]
list
| `String of FsxFilesystemArn.t ])
list ]