Interface CfnWorkflowPropsMixin.IInputFileLocationProperty
Specifies the location for the file that's being processed.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnWorkflowPropsMixin.IInputFileLocationProperty
Syntax (vb)
Public Interface CfnWorkflowPropsMixin.IInputFileLocationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins;
var inputFileLocationProperty = new InputFileLocationProperty {
EfsFileLocation = new EfsInputFileLocationProperty {
FileSystemId = "fileSystemId",
Path = "path"
},
S3FileLocation = new S3InputFileLocationProperty {
Bucket = "bucket",
Key = "key"
}
};
Synopsis
Properties
| EfsFileLocation | Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted. |
| S3FileLocation | Specifies the details for the Amazon S3 file that's being copied or decrypted. |
Properties
EfsFileLocation
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
object? EfsFileLocation { get; }
Property Value
Remarks
S3FileLocation
Specifies the details for the Amazon S3 file that's being copied or decrypted.
object? S3FileLocation { get; }