Struct aws_sdk_kafka::operation::describe_configuration_revision::DescribeConfigurationRevisionInput   
source · #[non_exhaustive]pub struct DescribeConfigurationRevisionInput {
    pub arn: Option<String>,
    pub revision: Option<i64>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.
revision: Option<i64>A string that uniquely identifies a revision of an MSK configuration.
Implementations§
source§impl DescribeConfigurationRevisionInput
 
impl DescribeConfigurationRevisionInput
sourcepub fn builder() -> DescribeConfigurationRevisionInputBuilder
 
pub fn builder() -> DescribeConfigurationRevisionInputBuilder
Creates a new builder-style object to manufacture DescribeConfigurationRevisionInput.
Trait Implementations§
source§impl Clone for DescribeConfigurationRevisionInput
 
impl Clone for DescribeConfigurationRevisionInput
source§fn clone(&self) -> DescribeConfigurationRevisionInput
 
fn clone(&self) -> DescribeConfigurationRevisionInput
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 PartialEq for DescribeConfigurationRevisionInput
 
impl PartialEq for DescribeConfigurationRevisionInput
source§fn eq(&self, other: &DescribeConfigurationRevisionInput) -> bool
 
fn eq(&self, other: &DescribeConfigurationRevisionInput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeConfigurationRevisionInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeConfigurationRevisionInput
impl Send for DescribeConfigurationRevisionInput
impl Sync for DescribeConfigurationRevisionInput
impl Unpin for DescribeConfigurationRevisionInput
impl UnwindSafe for DescribeConfigurationRevisionInput
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