@Stability(value=Stable)
public static interface CfnDataset.DatetimeOptionsProperty
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.*;
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() |
String |
getFormat()
Required option, that defines the datetime format used for a date parameter in the Amazon S3 path.
|
default String |
getLocaleCode()
Optional value for a non-US locale code, needed for correct interpretation of some date formats.
|
default String |
getTimezoneOffset()
Optional value for a timezone offset of the datetime parameter value in the Amazon S3 path.
|
@Stability(value=Stable) @NotNull 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".
@Stability(value=Stable) @Nullable default String getLocaleCode()
@Stability(value=Stable) @Nullable default String getTimezoneOffset()
Shouldn't be used if Format for this parameter includes timezone fields. If no offset specified, UTC is assumed.
@Stability(value=Stable) static CfnDataset.DatetimeOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.