pub struct DescribeDimensionResponse {
pub arn: Option<String>,
pub creation_date: Option<f64>,
pub last_modified_date: Option<f64>,
pub name: Option<String>,
pub string_values: Option<Vec<String>>,
pub type_: Option<String>,
}Fields§
§arn: Option<String>The ARN (Amazon resource name) for the dimension.
creation_date: Option<f64>The date the dimension was created.
last_modified_date: Option<f64>The date the dimension was last modified.
name: Option<String>The unique identifier for the dimension.
string_values: Option<Vec<String>>The value or list of values used to scope the dimension. For example, for topic filters, this is the pattern used to match the MQTT topic name.
type_: Option<String>The type of the dimension.
Trait Implementations§
Source§impl Clone for DescribeDimensionResponse
impl Clone for DescribeDimensionResponse
Source§fn clone(&self) -> DescribeDimensionResponse
fn clone(&self) -> DescribeDimensionResponse
Returns a duplicate 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 DescribeDimensionResponse
impl Debug for DescribeDimensionResponse
Source§impl Default for DescribeDimensionResponse
impl Default for DescribeDimensionResponse
Source§fn default() -> DescribeDimensionResponse
fn default() -> DescribeDimensionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeDimensionResponse
impl<'de> Deserialize<'de> for DescribeDimensionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for DescribeDimensionResponse
Auto Trait Implementations§
impl Freeze for DescribeDimensionResponse
impl RefUnwindSafe for DescribeDimensionResponse
impl Send for DescribeDimensionResponse
impl Sync for DescribeDimensionResponse
impl Unpin for DescribeDimensionResponse
impl UnwindSafe for DescribeDimensionResponse
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