Show / Hide Table of Contents

Interface CfnDatasetPropsMixin.IPathOptionsProperty

Represents a set of options that define how DataBrew selects files for a given Amazon S3 path in a dataset.

Namespace: Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDatasetPropsMixin.IPathOptionsProperty
Syntax (vb)
Public Interface CfnDatasetPropsMixin.IPathOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-pathoptions.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.DataBrew.Mixins;

             var pathOptionsProperty = new PathOptionsProperty {
                 FilesLimit = new FilesLimitProperty {
                     MaxFiles = 123,
                     Order = "order",
                     OrderedBy = "orderedBy"
                 },
                 LastModifiedDateCondition = new FilterExpressionProperty {
                     Expression = "expression",
                     ValuesMap = new [] { new FilterValueProperty {
                         Value = "value",
                         ValueReference = "valueReference"
                     } }
                 },
                 Parameters = new [] { new PathParameterProperty {
                     DatasetParameter = new DatasetParameterProperty {
                         CreateColumn = false,
                         DatetimeOptions = new DatetimeOptionsProperty {
                             Format = "format",
                             LocaleCode = "localeCode",
                             TimezoneOffset = "timezoneOffset"
                         },
                         Filter = new FilterExpressionProperty {
                             Expression = "expression",
                             ValuesMap = new [] { new FilterValueProperty {
                                 Value = "value",
                                 ValueReference = "valueReference"
                             } }
                         },
                         Name = "name",
                         Type = "type"
                     },
                     PathParameterName = "pathParameterName"
                 } }
             };

Synopsis

Properties

FilesLimit

If provided, this structure imposes a limit on a number of files that should be selected.

LastModifiedDateCondition

If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3 .

Parameters

A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.

Properties

FilesLimit

If provided, this structure imposes a limit on a number of files that should be selected.

object? FilesLimit { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-pathoptions.html#cfn-databrew-dataset-pathoptions-fileslimit

Type union: either IResolvable or CfnDatasetPropsMixin.IFilesLimitProperty

LastModifiedDateCondition

If provided, this structure defines a date range for matching Amazon S3 objects based on their LastModifiedDate attribute in Amazon S3 .

object? LastModifiedDateCondition { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-pathoptions.html#cfn-databrew-dataset-pathoptions-lastmodifieddatecondition

Type union: either IResolvable or CfnDatasetPropsMixin.IFilterExpressionProperty

Parameters

A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.

object? Parameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-dataset-pathoptions.html#cfn-databrew-dataset-pathoptions-parameters

Type union: either IResolvable or (either IResolvable or CfnDatasetPropsMixin.IPathParameterProperty)[]

Back to top Generated by DocFX