public static interface CfnDataset.DatetimeOptionsProperty
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.*; DatetimeOptionsProperty datetimeOptionsProperty = DatetimeOptionsProperty.builder() .format("format") // the properties below are optional .localeCode("localeCode") .timezoneOffset("timezoneOffset") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.DatetimeOptionsProperty.Builder
A builder for
CfnDataset.DatetimeOptionsProperty |
static class |
CfnDataset.DatetimeOptionsProperty.Jsii$Proxy
An implementation for
CfnDataset.DatetimeOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.DatetimeOptionsProperty.Builder |
builder() |
java.lang.String |
getFormat()
Required option, that defines the datetime format used for a date parameter in the Amazon S3 path.
|
default java.lang.String |
getLocaleCode()
Optional value for a non-US locale code, needed for correct interpretation of some date formats.
|
default java.lang.String |
getTimezoneOffset()
Optional value for a timezone offset of the datetime parameter value in the Amazon S3 path.
|
java.lang.String getFormat()
Should use only supported datetime specifiers and separation characters, all litera a-z or A-Z character should be escaped with single quotes. E.g. "MM.dd.yyyy-'at'-HH:mm".
default java.lang.String getLocaleCode()
default java.lang.String getTimezoneOffset()
Shouldn't be used if Format for this parameter includes timezone fields. If no offset specified, UTC is assumed.
static CfnDataset.DatetimeOptionsProperty.Builder builder()