pub struct UpdateConfigurationResponse {
pub arn: Option<String>,
pub created: Option<f64>,
pub id: Option<String>,
pub latest_revision: Option<ConfigurationRevision>,
pub name: Option<String>,
pub warnings: Option<Vec<SanitizationWarning>>,
}
Fields§
§arn: Option<String>
Required. The Amazon Resource Name (ARN) of the configuration.
created: Option<f64>
Required. The date and time of the configuration.
id: Option<String>
Required. The unique ID that Amazon MQ generates for the configuration.
latest_revision: Option<ConfigurationRevision>
The latest revision of the configuration.
name: Option<String>
Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
warnings: Option<Vec<SanitizationWarning>>
The list of the first 20 warnings about the configuration XML elements or attributes that were sanitized.
Trait Implementations§
Source§impl Clone for UpdateConfigurationResponse
impl Clone for UpdateConfigurationResponse
Source§fn clone(&self) -> UpdateConfigurationResponse
fn clone(&self) -> UpdateConfigurationResponse
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 UpdateConfigurationResponse
impl Debug for UpdateConfigurationResponse
Source§impl Default for UpdateConfigurationResponse
impl Default for UpdateConfigurationResponse
Source§fn default() -> UpdateConfigurationResponse
fn default() -> UpdateConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateConfigurationResponse
impl<'de> Deserialize<'de> for UpdateConfigurationResponse
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 UpdateConfigurationResponse
Auto Trait Implementations§
impl Freeze for UpdateConfigurationResponse
impl RefUnwindSafe for UpdateConfigurationResponse
impl Send for UpdateConfigurationResponse
impl Sync for UpdateConfigurationResponse
impl Unpin for UpdateConfigurationResponse
impl UnwindSafe for UpdateConfigurationResponse
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