Struct aws_sdk_databrew::model::DatetimeOptions [−][src]
#[non_exhaustive]pub struct DatetimeOptions {
pub format: Option<String>,
pub timezone_offset: Option<String>,
pub locale_code: Option<String>,
}
Expand description
Represents additional options for correct interpretation of datetime parameters used in the Amazon S3 path of a dataset.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.format: Option<String>
Required option, that defines the datetime format used for a date parameter in the Amazon S3 path. Should use only supported datetime specifiers and separation characters, all literal a-z or A-Z characters should be escaped with single quotes. E.g. "MM.dd.yyyy-'at'-HH:mm".
timezone_offset: Option<String>
Optional value for a timezone offset of the datetime parameter value in the Amazon S3 path. Shouldn't be used if Format for this parameter includes timezone fields. If no offset specified, UTC is assumed.
locale_code: Option<String>
Optional value for a non-US locale code, needed for correct interpretation of some date formats.
Implementations
Required option, that defines the datetime format used for a date parameter in the Amazon S3 path. Should use only supported datetime specifiers and separation characters, all literal a-z or A-Z characters should be escaped with single quotes. E.g. "MM.dd.yyyy-'at'-HH:mm".
Optional value for a timezone offset of the datetime parameter value in the Amazon S3 path. Shouldn't be used if Format for this parameter includes timezone fields. If no offset specified, UTC is assumed.
Optional value for a non-US locale code, needed for correct interpretation of some date formats.
Creates a new builder-style object to manufacture DatetimeOptions
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DatetimeOptions
impl Send for DatetimeOptions
impl Sync for DatetimeOptions
impl Unpin for DatetimeOptions
impl UnwindSafe for DatetimeOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more