Interface CfnDataset.DatasetParameterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.DatasetParameterProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.DatasetParameterProperty extends software.amazon.jsii.JsiiSerializable
Represents a dataset paramater that defines type and conditions for a parameter in the Amazon S3 path of the dataset.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.databrew.*;
 DatasetParameterProperty datasetParameterProperty = DatasetParameterProperty.builder()
         .name("name")
         .type("type")
         // the properties below are optional
         .createColumn(false)
         .datetimeOptions(DatetimeOptionsProperty.builder()
                 .format("format")
                 // the properties below are optional
                 .localeCode("localeCode")
                 .timezoneOffset("timezoneOffset")
                 .build())
         .filter(FilterExpressionProperty.builder()
                 .expression("expression")
                 .valuesMap(List.of(FilterValueProperty.builder()
                         .value("value")
                         .valueReference("valueReference")
                         .build()))
                 .build())
         .build();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the parameter that is used in the dataset's Amazon S3 path.
    • getType

      @Stability(Stable) @NotNull String getType()
      The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.
    • getCreateColumn

      @Stability(Stable) @Nullable default Object getCreateColumn()
      Optional boolean value that defines whether the captured value of this parameter should be loaded as an additional column in the dataset.
    • getDatetimeOptions

      @Stability(Stable) @Nullable default Object getDatetimeOptions()
      Additional parameter options such as a format and a timezone.

      Required for datetime parameters.

    • getFilter

      @Stability(Stable) @Nullable default Object getFilter()
      The optional filter expression structure to apply additional matching criteria to the parameter.
    • builder

      @Stability(Stable) static CfnDataset.DatasetParameterProperty.Builder builder()
      Returns:
      a CfnDataset.DatasetParameterProperty.Builder of CfnDataset.DatasetParameterProperty