[][src]Struct rusoto_kafka::Configuration

pub struct Configuration {
    pub arn: String,
    pub creation_time: f64,
    pub description: String,
    pub kafka_versions: Vec<String>,
    pub latest_revision: ConfigurationRevision,
    pub name: String,
    pub state: String,
}
        <p>Represents an MSK Configuration.</p>

Fields

arn: String
        <p>The Amazon Resource Name (ARN) of the configuration.</p>
creation_time: f64
        <p>The time when the configuration was created.</p>
description: String
        <p>The description of the configuration.</p>
kafka_versions: Vec<String>
        <p>An array of the versions of Apache Kafka with which you can use this MSK configuration. You can use this configuration for an MSK cluster only if the Apache Kafka version specified for the cluster appears in this array.</p>
latest_revision: ConfigurationRevision
        <p>Latest revision of the configuration.</p>
name: String
        <p>The name of the configuration.</p>
state: String
        <p>The state of the configuration. The possible states are ACTIVE, DELETING, and DELETE_FAILED. </p>

Trait Implementations

impl Clone for Configuration[src]

impl Debug for Configuration[src]

impl Default for Configuration[src]

impl<'de> Deserialize<'de> for Configuration[src]

impl PartialEq<Configuration> for Configuration[src]

impl StructuralPartialEq for Configuration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.