Interface CfnWorkflow.InputFileLocationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflow.InputFileLocationProperty.Jsii$Proxy
Enclosing class:
CfnWorkflow

@Stability(Stable) public static interface CfnWorkflow.InputFileLocationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.transfer.*;
 InputFileLocationProperty inputFileLocationProperty = InputFileLocationProperty.builder()
         .efsFileLocation(EfsInputFileLocationProperty.builder()
                 .fileSystemId("fileSystemId")
                 .path("path")
                 .build())
         .s3FileLocation(S3InputFileLocationProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .build())
         .build();
 

See Also: