Struct aws_sdk_opensearch::types::builders::WindowStartTimeBuilder
source · #[non_exhaustive]pub struct WindowStartTimeBuilder { /* private fields */ }
Expand description
A builder for WindowStartTime
.
Implementations§
source§impl WindowStartTimeBuilder
impl WindowStartTimeBuilder
sourcepub fn hours(self, input: i64) -> Self
pub fn hours(self, input: i64) -> Self
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time. For example, 17
refers to 5:00 P.M. UTC.
sourcepub fn set_hours(self, input: Option<i64>) -> Self
pub fn set_hours(self, input: Option<i64>) -> Self
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time. For example, 17
refers to 5:00 P.M. UTC.
sourcepub fn get_hours(&self) -> &Option<i64>
pub fn get_hours(&self) -> &Option<i64>
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time. For example, 17
refers to 5:00 P.M. UTC.
sourcepub fn minutes(self, input: i64) -> Self
pub fn minutes(self, input: i64) -> Self
The start minute of the window, in UTC.
This field is required.sourcepub fn set_minutes(self, input: Option<i64>) -> Self
pub fn set_minutes(self, input: Option<i64>) -> Self
The start minute of the window, in UTC.
sourcepub fn get_minutes(&self) -> &Option<i64>
pub fn get_minutes(&self) -> &Option<i64>
The start minute of the window, in UTC.
sourcepub fn build(self) -> WindowStartTime
pub fn build(self) -> WindowStartTime
Consumes the builder and constructs a WindowStartTime
.
Trait Implementations§
source§impl Clone for WindowStartTimeBuilder
impl Clone for WindowStartTimeBuilder
source§fn clone(&self) -> WindowStartTimeBuilder
fn clone(&self) -> WindowStartTimeBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for WindowStartTimeBuilder
impl Debug for WindowStartTimeBuilder
source§impl Default for WindowStartTimeBuilder
impl Default for WindowStartTimeBuilder
source§fn default() -> WindowStartTimeBuilder
fn default() -> WindowStartTimeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for WindowStartTimeBuilder
impl PartialEq for WindowStartTimeBuilder
source§fn eq(&self, other: &WindowStartTimeBuilder) -> bool
fn eq(&self, other: &WindowStartTimeBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for WindowStartTimeBuilder
Auto Trait Implementations§
impl RefUnwindSafe for WindowStartTimeBuilder
impl Send for WindowStartTimeBuilder
impl Sync for WindowStartTimeBuilder
impl Unpin for WindowStartTimeBuilder
impl UnwindSafe for WindowStartTimeBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.