pub struct GetAuditLogsParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetAuditLogsParamsBuilder<S>
impl<S: State> GetAuditLogsParamsBuilder<S>
Sourcepub fn build(self) -> GetAuditLogsParamswhere
S: IsComplete,
pub fn build(self) -> GetAuditLogsParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn time_period(
self,
value: String,
) -> GetAuditLogsParamsBuilder<SetTimePeriod<S>>where
S::TimePeriod: IsUnset,
pub fn time_period(
self,
value: String,
) -> GetAuditLogsParamsBuilder<SetTimePeriod<S>>where
S::TimePeriod: IsUnset,
Sourcepub fn maybe_time_period(
self,
value: Option<String>,
) -> GetAuditLogsParamsBuilder<SetTimePeriod<S>>where
S::TimePeriod: IsUnset,
pub fn maybe_time_period(
self,
value: Option<String>,
) -> GetAuditLogsParamsBuilder<SetTimePeriod<S>>where
S::TimePeriod: IsUnset,
Sourcepub fn cursor(self, value: String) -> GetAuditLogsParamsBuilder<SetCursor<S>>where
S::Cursor: IsUnset,
pub fn cursor(self, value: String) -> GetAuditLogsParamsBuilder<SetCursor<S>>where
S::Cursor: IsUnset,
Sourcepub fn maybe_cursor(
self,
value: Option<String>,
) -> GetAuditLogsParamsBuilder<SetCursor<S>>where
S::Cursor: IsUnset,
pub fn maybe_cursor(
self,
value: Option<String>,
) -> GetAuditLogsParamsBuilder<SetCursor<S>>where
S::Cursor: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for GetAuditLogsParamsBuilder<S>
impl<S> RefUnwindSafe for GetAuditLogsParamsBuilder<S>
impl<S> Send for GetAuditLogsParamsBuilder<S>
impl<S> Sync for GetAuditLogsParamsBuilder<S>
impl<S> Unpin for GetAuditLogsParamsBuilder<S>
impl<S> UnwindSafe for GetAuditLogsParamsBuilder<S>
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