interface EfsInputFileLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnWorkflowPropsMixin.EfsInputFileLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnWorkflowPropsMixin_EfsInputFileLocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnWorkflowPropsMixin.EfsInputFileLocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnWorkflowPropsMixin.EfsInputFileLocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » CfnWorkflowPropsMixin » EfsInputFileLocationProperty |
Specifies the Amazon EFS identifier and the path for the file being used.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from '@aws-cdk/cfn-property-mixins';
const efsInputFileLocationProperty: transfer.CfnWorkflowPropsMixin.EfsInputFileLocationProperty = {
fileSystemId: 'fileSystemId',
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | The identifier of the file system, assigned by Amazon EFS. |
| path? | string | The pathname for the folder being used by a workflow. |
fileSystemId?
Type:
string
(optional)
The identifier of the file system, assigned by Amazon EFS.
path?
Type:
string
(optional)
The pathname for the folder being used by a workflow.

.NET
Go
Java
Python
TypeScript