Struct aws_sdk_lightsail::operation::get_relational_database_log_events::GetRelationalDatabaseLogEventsOutput
source · #[non_exhaustive]pub struct GetRelationalDatabaseLogEventsOutput {
pub resource_log_events: Option<Vec<LogEvent>>,
pub next_backward_token: Option<String>,
pub next_forward_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.resource_log_events: Option<Vec<LogEvent>>
An object describing the result of your get relational database log events request.
next_backward_token: Option<String>
A token used for advancing to the previous page of results from your get relational database log events request.
next_forward_token: Option<String>
A token used for advancing to the next page of results from your get relational database log events request.
Implementations§
source§impl GetRelationalDatabaseLogEventsOutput
impl GetRelationalDatabaseLogEventsOutput
sourcepub fn resource_log_events(&self) -> Option<&[LogEvent]>
pub fn resource_log_events(&self) -> Option<&[LogEvent]>
An object describing the result of your get relational database log events request.
sourcepub fn next_backward_token(&self) -> Option<&str>
pub fn next_backward_token(&self) -> Option<&str>
A token used for advancing to the previous page of results from your get relational database log events request.
sourcepub fn next_forward_token(&self) -> Option<&str>
pub fn next_forward_token(&self) -> Option<&str>
A token used for advancing to the next page of results from your get relational database log events request.
source§impl GetRelationalDatabaseLogEventsOutput
impl GetRelationalDatabaseLogEventsOutput
sourcepub fn builder() -> GetRelationalDatabaseLogEventsOutputBuilder
pub fn builder() -> GetRelationalDatabaseLogEventsOutputBuilder
Creates a new builder-style object to manufacture GetRelationalDatabaseLogEventsOutput
.
Trait Implementations§
source§impl Clone for GetRelationalDatabaseLogEventsOutput
impl Clone for GetRelationalDatabaseLogEventsOutput
source§fn clone(&self) -> GetRelationalDatabaseLogEventsOutput
fn clone(&self) -> GetRelationalDatabaseLogEventsOutput
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 PartialEq for GetRelationalDatabaseLogEventsOutput
impl PartialEq for GetRelationalDatabaseLogEventsOutput
source§fn eq(&self, other: &GetRelationalDatabaseLogEventsOutput) -> bool
fn eq(&self, other: &GetRelationalDatabaseLogEventsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetRelationalDatabaseLogEventsOutput
impl RequestId for GetRelationalDatabaseLogEventsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetRelationalDatabaseLogEventsOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRelationalDatabaseLogEventsOutput
impl Send for GetRelationalDatabaseLogEventsOutput
impl Sync for GetRelationalDatabaseLogEventsOutput
impl Unpin for GetRelationalDatabaseLogEventsOutput
impl UnwindSafe for GetRelationalDatabaseLogEventsOutput
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