pub struct UpdateDimensionResponse {
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) of the created dimension.
creation_date: Option<f64>The date and time, in milliseconds since epoch, when the dimension was initially created.
last_modified_date: Option<f64>The date and time, in milliseconds since epoch, when the dimension was most recently updated.
name: Option<String>A 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 UpdateDimensionResponse
impl Clone for UpdateDimensionResponse
Source§fn clone(&self) -> UpdateDimensionResponse
fn clone(&self) -> UpdateDimensionResponse
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 UpdateDimensionResponse
impl Debug for UpdateDimensionResponse
Source§impl Default for UpdateDimensionResponse
impl Default for UpdateDimensionResponse
Source§fn default() -> UpdateDimensionResponse
fn default() -> UpdateDimensionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDimensionResponse
impl<'de> Deserialize<'de> for UpdateDimensionResponse
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
Source§impl PartialEq for UpdateDimensionResponse
impl PartialEq for UpdateDimensionResponse
impl StructuralPartialEq for UpdateDimensionResponse
Auto Trait Implementations§
impl Freeze for UpdateDimensionResponse
impl RefUnwindSafe for UpdateDimensionResponse
impl Send for UpdateDimensionResponse
impl Sync for UpdateDimensionResponse
impl Unpin for UpdateDimensionResponse
impl UnwindSafe for UpdateDimensionResponse
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