@Stability(value=Stable)
public static interface CfnDataset.DatasetParameterProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.DatasetParameterProperty.Builder
A builder for
CfnDataset.DatasetParameterProperty |
static class |
CfnDataset.DatasetParameterProperty.Jsii$Proxy
An implementation for
CfnDataset.DatasetParameterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.DatasetParameterProperty.Builder |
builder() |
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.
|
default Object |
getDatetimeOptions()
Additional parameter options such as a format and a timezone.
|
default Object |
getFilter()
The optional filter expression structure to apply additional matching criteria to the parameter.
|
String |
getName()
The name of the parameter that is used in the dataset's Amazon S3 path.
|
String |
getType()
The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default Object getCreateColumn()
@Stability(value=Stable) @Nullable default Object getDatetimeOptions()
Required for datetime parameters.
@Stability(value=Stable) @Nullable default Object getFilter()
@Stability(value=Stable) static CfnDataset.DatasetParameterProperty.Builder builder()
Copyright © 2022. All rights reserved.