interface InputFileLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnWorkflow.InputFileLocationProperty |
Java | software.amazon.awscdk.services.transfer.CfnWorkflow.InputFileLocationProperty |
Python | aws_cdk.aws_transfer.CfnWorkflow.InputFileLocationProperty |
TypeScript | @aws-cdk/aws-transfer » CfnWorkflow » InputFileLocationProperty |
Specifies the location for the file that's being processed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as transfer from '@aws-cdk/aws-transfer';
const inputFileLocationProperty: transfer.CfnWorkflow.InputFileLocationProperty = {
efsFileLocation: {
fileSystemId: 'fileSystemId',
path: 'path',
},
s3FileLocation: {
bucket: 'bucket',
key: 'key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| efs | IResolvable | Efs | Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted. |
| s3 | IResolvable | S3 | Specifies the details for the Amazon S3 file that's being copied or decrypted. |
efsFileLocation?
Type:
IResolvable | Efs
(optional)
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
s3FileLocation?
Type:
IResolvable | S3
(optional)
Specifies the details for the Amazon S3 file that's being copied or decrypted.

.NET
Java
Python
TypeScript