Class: Aws::Transfer::Types::EfsFileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::EfsFileLocation
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Note:
When making an API call, you may pass EfsFileLocation data as a hash:
{
file_system_id: "EfsFileSystemId",
path: "EfsPath",
}
Reserved for future use.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID of the file system, assigned by Amazon EFS.
-
#path ⇒ String
The pathname for the folder being used by a workflow.
Instance Attribute Details
#file_system_id ⇒ String
The ID of the file system, assigned by Amazon EFS.
2771 2772 2773 2774 2775 2776 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 2771 class EfsFileLocation < Struct.new( :file_system_id, :path) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The pathname for the folder being used by a workflow.
2771 2772 2773 2774 2775 2776 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 2771 class EfsFileLocation < Struct.new( :file_system_id, :path) SENSITIVE = [] include Aws::Structure end |