Show / Hide Table of Contents

Class CfnWorkflowPropsMixin.InputFileLocationProperty

Specifies the location for the file that's being processed.

Inheritance
object
CfnWorkflowPropsMixin.InputFileLocationProperty
Implements
CfnWorkflowPropsMixin.IInputFileLocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
                 }
             };

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

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.

public object? S3FileLocation { get; set; }
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

Implements

CfnWorkflowPropsMixin.IInputFileLocationProperty
Back to top Generated by DocFX