#[non_exhaustive]pub struct GetQueryResultsOutput {
pub fields: Vec<QueryField>,
pub data: Vec<Vec<String>>,
pub next_token: Option<String>,
/* private fields */
}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.fields: Vec<QueryField>The fields that the query returns data for. Fields are name-data type pairs, such as availability_score-float.
data: Vec<Vec<String>>The data results that the query returns. Data is returned in arrays, aligned with the Fields for the query, which creates a repository of Amazon CloudWatch Internet Monitor information for your application. Then, you can filter the information in the repository by using FilterParameters that you define.
next_token: Option<String>The token for the next set of results. You receive this token from a previous call.
Implementations§
source§impl GetQueryResultsOutput
impl GetQueryResultsOutput
sourcepub fn fields(&self) -> &[QueryField]
pub fn fields(&self) -> &[QueryField]
The fields that the query returns data for. Fields are name-data type pairs, such as availability_score-float.
sourcepub fn data(&self) -> &[Vec<String>]
pub fn data(&self) -> &[Vec<String>]
The data results that the query returns. Data is returned in arrays, aligned with the Fields for the query, which creates a repository of Amazon CloudWatch Internet Monitor information for your application. Then, you can filter the information in the repository by using FilterParameters that you define.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. You receive this token from a previous call.
source§impl GetQueryResultsOutput
impl GetQueryResultsOutput
sourcepub fn builder() -> GetQueryResultsOutputBuilder
pub fn builder() -> GetQueryResultsOutputBuilder
Creates a new builder-style object to manufacture GetQueryResultsOutput.
Trait Implementations§
source§impl Clone for GetQueryResultsOutput
impl Clone for GetQueryResultsOutput
source§fn clone(&self) -> GetQueryResultsOutput
fn clone(&self) -> GetQueryResultsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetQueryResultsOutput
impl Debug for GetQueryResultsOutput
source§impl PartialEq for GetQueryResultsOutput
impl PartialEq for GetQueryResultsOutput
source§fn eq(&self, other: &GetQueryResultsOutput) -> bool
fn eq(&self, other: &GetQueryResultsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for GetQueryResultsOutput
impl RequestId for GetQueryResultsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetQueryResultsOutput
Auto Trait Implementations§
impl Freeze for GetQueryResultsOutput
impl RefUnwindSafe for GetQueryResultsOutput
impl Send for GetQueryResultsOutput
impl Sync for GetQueryResultsOutput
impl Unpin for GetQueryResultsOutput
impl UnwindSafe for GetQueryResultsOutput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more