Struct aws_sdk_timestreaminfluxdb::operation::list_db_parameter_groups::ListDbParameterGroupsOutput
source · #[non_exhaustive]pub struct ListDbParameterGroupsOutput {
pub items: Vec<DbParameterGroupSummary>,
pub next_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.items: Vec<DbParameterGroupSummary>
A list of Timestream for InfluxDB DB parameter group summaries.
next_token: Option<String>
Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.
Implementations§
source§impl ListDbParameterGroupsOutput
impl ListDbParameterGroupsOutput
sourcepub fn items(&self) -> &[DbParameterGroupSummary]
pub fn items(&self) -> &[DbParameterGroupSummary]
A list of Timestream for InfluxDB DB parameter group summaries.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Token from a previous call of the operation. When this value is provided, the service returns results from where the previous response left off.
source§impl ListDbParameterGroupsOutput
impl ListDbParameterGroupsOutput
sourcepub fn builder() -> ListDbParameterGroupsOutputBuilder
pub fn builder() -> ListDbParameterGroupsOutputBuilder
Creates a new builder-style object to manufacture ListDbParameterGroupsOutput
.
Trait Implementations§
source§impl Clone for ListDbParameterGroupsOutput
impl Clone for ListDbParameterGroupsOutput
source§fn clone(&self) -> ListDbParameterGroupsOutput
fn clone(&self) -> ListDbParameterGroupsOutput
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 ListDbParameterGroupsOutput
impl Debug for ListDbParameterGroupsOutput
source§impl PartialEq for ListDbParameterGroupsOutput
impl PartialEq for ListDbParameterGroupsOutput
source§fn eq(&self, other: &ListDbParameterGroupsOutput) -> bool
fn eq(&self, other: &ListDbParameterGroupsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListDbParameterGroupsOutput
impl RequestId for ListDbParameterGroupsOutput
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 ListDbParameterGroupsOutput
Auto Trait Implementations§
impl Freeze for ListDbParameterGroupsOutput
impl RefUnwindSafe for ListDbParameterGroupsOutput
impl Send for ListDbParameterGroupsOutput
impl Sync for ListDbParameterGroupsOutput
impl Unpin for ListDbParameterGroupsOutput
impl UnwindSafe for ListDbParameterGroupsOutput
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.