aws-cdk-lib.aws_transfer.CfnWorkflow.InputFileLocationProperty

interface InputFileLocationProperty

LanguageType name
.NETAmazon.CDK.AWS.Transfer.CfnWorkflow.InputFileLocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnWorkflow_InputFileLocationProperty
Javasoftware.amazon.awscdk.services.transfer.CfnWorkflow.InputFileLocationProperty
Pythonaws_cdk.aws_transfer.CfnWorkflow.InputFileLocationProperty
TypeScript aws-cdk-lib » 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 { aws_transfer as transfer } from 'aws-cdk-lib';
const inputFileLocationProperty: transfer.CfnWorkflow.InputFileLocationProperty = {
  efsFileLocation: {
    fileSystemId: 'fileSystemId',
    path: 'path',
  },
  s3FileLocation: {
    bucket: 'bucket',
    key: 'key',
  },
};

Properties

NameTypeDescription
efsFileLocation?IResolvable | EfsInputFileLocationPropertySpecifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
s3FileLocation?IResolvable | S3InputFileLocationPropertySpecifies the details for the Amazon S3 file that's being copied or decrypted.

efsFileLocation?

Type: IResolvable | EfsInputFileLocationProperty (optional)

Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.


s3FileLocation?

Type: IResolvable | S3InputFileLocationProperty (optional)

Specifies the details for the Amazon S3 file that's being copied or decrypted.