Struct aws_sdk_pi::output::DescribeDimensionKeysOutput
source · [−]#[non_exhaustive]pub struct DescribeDimensionKeysOutput {
pub aligned_start_time: Option<DateTime>,
pub aligned_end_time: Option<DateTime>,
pub partition_keys: Option<Vec<ResponsePartitionKey>>,
pub keys: Option<Vec<DimensionKeyDescription>>,
pub next_token: Option<String>,
}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.aligned_start_time: Option<DateTime>The start time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedStartTime will be less than or equal to the value of the user-specified StartTime.
aligned_end_time: Option<DateTime>The end time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedEndTime will be greater than or equal to the value of the user-specified Endtime.
partition_keys: Option<Vec<ResponsePartitionKey>>If PartitionBy was present in the request, PartitionKeys contains the breakdown of dimension keys by the specified partitions.
keys: Option<Vec<DimensionKeyDescription>>The dimension keys that were requested.
next_token: Option<String>A pagination token that indicates the response didn’t return all available records because MaxRecords was specified in the previous request. To get the remaining records, specify NextToken in a separate request with this value.
Implementations
sourceimpl DescribeDimensionKeysOutput
impl DescribeDimensionKeysOutput
sourcepub fn aligned_start_time(&self) -> Option<&DateTime>
pub fn aligned_start_time(&self) -> Option<&DateTime>
The start time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedStartTime will be less than or equal to the value of the user-specified StartTime.
sourcepub fn aligned_end_time(&self) -> Option<&DateTime>
pub fn aligned_end_time(&self) -> Option<&DateTime>
The end time for the returned dimension keys, after alignment to a granular boundary (as specified by PeriodInSeconds). AlignedEndTime will be greater than or equal to the value of the user-specified Endtime.
sourcepub fn partition_keys(&self) -> Option<&[ResponsePartitionKey]>
pub fn partition_keys(&self) -> Option<&[ResponsePartitionKey]>
If PartitionBy was present in the request, PartitionKeys contains the breakdown of dimension keys by the specified partitions.
sourcepub fn keys(&self) -> Option<&[DimensionKeyDescription]>
pub fn keys(&self) -> Option<&[DimensionKeyDescription]>
The dimension keys that were requested.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token that indicates the response didn’t return all available records because MaxRecords was specified in the previous request. To get the remaining records, specify NextToken in a separate request with this value.
sourceimpl DescribeDimensionKeysOutput
impl DescribeDimensionKeysOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeDimensionKeysOutput
Trait Implementations
sourceimpl Clone for DescribeDimensionKeysOutput
impl Clone for DescribeDimensionKeysOutput
sourcefn clone(&self) -> DescribeDimensionKeysOutput
fn clone(&self) -> DescribeDimensionKeysOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeDimensionKeysOutput
impl Debug for DescribeDimensionKeysOutput
sourceimpl PartialEq<DescribeDimensionKeysOutput> for DescribeDimensionKeysOutput
impl PartialEq<DescribeDimensionKeysOutput> for DescribeDimensionKeysOutput
sourcefn eq(&self, other: &DescribeDimensionKeysOutput) -> bool
fn eq(&self, other: &DescribeDimensionKeysOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeDimensionKeysOutput) -> bool
fn ne(&self, other: &DescribeDimensionKeysOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeDimensionKeysOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeDimensionKeysOutput
impl Send for DescribeDimensionKeysOutput
impl Sync for DescribeDimensionKeysOutput
impl Unpin for DescribeDimensionKeysOutput
impl UnwindSafe for DescribeDimensionKeysOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more