Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-inputfilelocation.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-inputfilelocation.html#cfn-transfer-workflow-inputfilelocation-efsfilelocation

Type union: either IResolvable or CfnWorkflowPropsMixin.IEfsInputFileLocationProperty

S3FileLocation

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

object? S3FileLocation { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-inputfilelocation.html#cfn-transfer-workflow-inputfilelocation-s3filelocation

Type union: either IResolvable or CfnWorkflowPropsMixin.IS3InputFileLocationProperty

Back to top Generated by DocFX