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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflow.InputFileLocationPropertystatic final classAn implementation forCfnWorkflow.InputFileLocationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsFileLocation
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.Returns union: either
IResolvableorCfnWorkflow.EfsInputFileLocationProperty- See Also:
-
getS3FileLocation
Specifies the details for the Amazon S3 file that's being copied or decrypted.Returns union: either
IResolvableorCfnWorkflow.S3InputFileLocationProperty- See Also:
-
builder
-