Class CfnWorkflowPropsMixin.InputFileLocationProperty
Specifies the location for the file that's being processed.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnWorkflowPropsMixin.InputFileLocationProperty : CfnWorkflowPropsMixin.IInputFileLocationProperty
Syntax (vb)
Public Class CfnWorkflowPropsMixin.InputFileLocationProperty Implements 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
Constructors
| InputFileLocationProperty() | Specifies the location for the file that's being processed. |
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. |
Constructors
InputFileLocationProperty()
Specifies the location for the file that's being processed.
public InputFileLocationProperty()
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"
}
};
Properties
EfsFileLocation
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that's being decrypted.
public object? EfsFileLocation { get; set; }
Property Value
Remarks
S3FileLocation
Specifies the details for the Amazon S3 file that's being copied or decrypted.
public object? S3FileLocation { get; set; }