Show / Hide Table of Contents

Class CfnWorkflow.S3FileLocationProperty

Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.

Inheritance
object
CfnWorkflow.S3FileLocationProperty
Implements
CfnWorkflow.IS3FileLocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWorkflow.S3FileLocationProperty : CfnWorkflow.IS3FileLocationProperty
Syntax (vb)
Public Class CfnWorkflow.S3FileLocationProperty Implements CfnWorkflow.IS3FileLocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-s3filelocation.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.AWS.Transfer;

             var s3FileLocationProperty = new S3FileLocationProperty {
                 S3FileLocation = new S3InputFileLocationProperty {
                     Bucket = "bucket",
                     Key = "key"
                 }
             };

Synopsis

Constructors

S3FileLocationProperty()

Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.

Properties

S3FileLocation

Specifies the details for the file location for the file that's being used in the workflow.

Constructors

S3FileLocationProperty()

Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.

public S3FileLocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-s3filelocation.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.AWS.Transfer;

             var s3FileLocationProperty = new S3FileLocationProperty {
                 S3FileLocation = new S3InputFileLocationProperty {
                     Bucket = "bucket",
                     Key = "key"
                 }
             };

Properties

S3FileLocation

Specifies the details for the file location for the file that's being used in the workflow.

public object? S3FileLocation { get; set; }
Property Value

object

Remarks

Only applicable if you are using Amazon S3 storage.

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

Type union: either IResolvable or CfnWorkflow.IS3InputFileLocationProperty

Implements

CfnWorkflow.IS3FileLocationProperty
Back to top Generated by DocFX