Show / Hide Table of Contents

Interface IDataBucketConfiguration

S3 bucket configuration for data storage destination.

Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDataBucketConfiguration
Syntax (vb)
Public Interface IDataBucketConfiguration
Remarks

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.S3;
            using Amazon.CDK.AWS.StepFunctions.Tasks;

            Bucket bucket;

            var dataBucketConfiguration = new DataBucketConfiguration {
                Bucket = bucket,

                // the properties below are optional
                Path = "path"
            };

Synopsis

Properties

Bucket

The S3 bucket.

Path

Path to file or directory within the bucket.

Properties

Bucket

The S3 bucket.

IBucket Bucket { get; }
Property Value

IBucket

Remarks

ExampleMetadata: fixture=_generated

Path

Path to file or directory within the bucket.

string? Path { get; }
Property Value

string

Remarks

Default: - root of the bucket

Back to top Generated by DocFX