pub struct DescribeConfigurationResponse {
pub arn: Option<String>,
pub creation_time: Option<f64>,
pub description: Option<String>,
pub kafka_versions: Option<Vec<String>>,
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>
description: Option<String>
<p>The description of the configuration.</p>
kafka_versions: Option<Vec<String>>
<p>The versions of Apache Kafka with which you can use this MSK configuration.</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 DescribeConfigurationResponse
impl Clone for DescribeConfigurationResponse
Source§fn clone(&self) -> DescribeConfigurationResponse
fn clone(&self) -> DescribeConfigurationResponse
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 Default for DescribeConfigurationResponse
impl Default for DescribeConfigurationResponse
Source§fn default() -> DescribeConfigurationResponse
fn default() -> DescribeConfigurationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeConfigurationResponse
impl<'de> Deserialize<'de> for DescribeConfigurationResponse
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 DescribeConfigurationResponse
impl PartialEq for DescribeConfigurationResponse
Source§fn eq(&self, other: &DescribeConfigurationResponse) -> bool
fn eq(&self, other: &DescribeConfigurationResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeConfigurationResponse
Auto Trait Implementations§
impl Freeze for DescribeConfigurationResponse
impl RefUnwindSafe for DescribeConfigurationResponse
impl Send for DescribeConfigurationResponse
impl Sync for DescribeConfigurationResponse
impl Unpin for DescribeConfigurationResponse
impl UnwindSafe for DescribeConfigurationResponse
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