#[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.