Show / Hide Table of Contents

Interface CfnWorkflow.IS3FileLocationProperty

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

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnWorkflow.IS3FileLocationProperty
Syntax (vb)
Public Interface 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

Properties

S3FileLocation

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

Properties

S3FileLocation

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

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

Back to top Generated by DocFX