Show / Hide Table of Contents

Class CfnWorkflow.S3InputFileLocationProperty

Specifies the details for the Amazon S3 location for an input file to a workflow.

Inheritance
object
CfnWorkflow.S3InputFileLocationProperty
Implements
CfnWorkflow.IS3InputFileLocationProperty
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.S3InputFileLocationProperty : CfnWorkflow.IS3InputFileLocationProperty
Syntax (vb)
Public Class CfnWorkflow.S3InputFileLocationProperty Implements CfnWorkflow.IS3InputFileLocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-s3inputfilelocation.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 s3InputFileLocationProperty = new S3InputFileLocationProperty {
                 Bucket = "bucket",
                 Key = "key"
             };

Synopsis

Constructors

S3InputFileLocationProperty()

Specifies the details for the Amazon S3 location for an input file to a workflow.

Properties

Bucket

Specifies the S3 bucket for the customer input file.

Key

The name assigned to the file when it was created in Amazon S3.

Constructors

S3InputFileLocationProperty()

Specifies the details for the Amazon S3 location for an input file to a workflow.

public S3InputFileLocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-workflow-s3inputfilelocation.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 s3InputFileLocationProperty = new S3InputFileLocationProperty {
                 Bucket = "bucket",
                 Key = "key"
             };

Properties

Bucket

Specifies the S3 bucket for the customer input file.

public string? Bucket { get; set; }
Property Value

string

Remarks

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

Key

The name assigned to the file when it was created in Amazon S3.

public string? Key { get; set; }
Property Value

string

Remarks

You use the object key to retrieve the object.

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

Implements

CfnWorkflow.IS3InputFileLocationProperty
Back to top Generated by DocFX