Struct aws_sdk_pi::types::DimensionKeyDetail
source · #[non_exhaustive]pub struct DimensionKeyDetail { /* private fields */ }
Expand description
An object that describes the details for a specified dimension.
Implementations§
source§impl DimensionKeyDetail
impl DimensionKeyDetail
sourcepub fn value(&self) -> Option<&str>
pub fn value(&self) -> Option<&str>
The value of the dimension detail data. Depending on the return status, this value is either the full or truncated SQL query for the following dimensions:
-
db.query.statement
(Amazon DocumentDB) -
db.sql.statement
(Amazon RDS and Aurora)
sourcepub fn dimension(&self) -> Option<&str>
pub fn dimension(&self) -> Option<&str>
The full name of the dimension. The full name includes the group name and key name. The following values are valid:
-
db.query.statement
(Amazon DocumentDB) -
db.sql.statement
(Amazon RDS and Aurora)
sourcepub fn status(&self) -> Option<&DetailStatus>
pub fn status(&self) -> Option<&DetailStatus>
The status of the dimension detail data. Possible values include the following:
-
AVAILABLE
- The dimension detail data is ready to be retrieved. -
PROCESSING
- The dimension detail data isn't ready to be retrieved because more processing time is required. If the requested detail data has the statusPROCESSING
, Performance Insights returns the truncated query. -
UNAVAILABLE
- The dimension detail data could not be collected successfully.
source§impl DimensionKeyDetail
impl DimensionKeyDetail
sourcepub fn builder() -> DimensionKeyDetailBuilder
pub fn builder() -> DimensionKeyDetailBuilder
Creates a new builder-style object to manufacture DimensionKeyDetail
.
Trait Implementations§
source§impl Clone for DimensionKeyDetail
impl Clone for DimensionKeyDetail
source§fn clone(&self) -> DimensionKeyDetail
fn clone(&self) -> DimensionKeyDetail
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DimensionKeyDetail
impl Debug for DimensionKeyDetail
source§impl PartialEq<DimensionKeyDetail> for DimensionKeyDetail
impl PartialEq<DimensionKeyDetail> for DimensionKeyDetail
source§fn eq(&self, other: &DimensionKeyDetail) -> bool
fn eq(&self, other: &DimensionKeyDetail) -> bool
self
and other
values to be equal, and is used
by ==
.