pub struct CreateConfigurationResponse {
pub arn: Option<String>,
pub creation_time: Option<f64>,
pub latest_revision: Option<ConfigurationRevision>,
pub name: Option<String>,
}
Fields§
§arn: Option<String>
<p>The Amazon Resource Name (ARN) of the configuration.</p>
creation_time: Option<f64>
<p>The time when the configuration was created.</p>
latest_revision: Option<ConfigurationRevision>
<p>Latest revision of the configuration.</p>
name: Option<String>
<p>The name of the configuration.</p>
Trait Implementations§
Source§impl Clone for CreateConfigurationResponse
impl Clone for CreateConfigurationResponse
Source§fn clone(&self) -> CreateConfigurationResponse
fn clone(&self) -> CreateConfigurationResponse
Returns a copy 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 CreateConfigurationResponse
impl Debug for CreateConfigurationResponse
Source§impl Default for CreateConfigurationResponse
impl Default for CreateConfigurationResponse
Source§fn default() -> CreateConfigurationResponse
fn default() -> CreateConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateConfigurationResponse
impl<'de> Deserialize<'de> for CreateConfigurationResponse
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 CreateConfigurationResponse
Auto Trait Implementations§
impl Freeze for CreateConfigurationResponse
impl RefUnwindSafe for CreateConfigurationResponse
impl Send for CreateConfigurationResponse
impl Sync for CreateConfigurationResponse
impl Unpin for CreateConfigurationResponse
impl UnwindSafe for CreateConfigurationResponse
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