[][src]Struct rusoto_kafka::CreateClusterRequest

pub struct CreateClusterRequest {
    pub broker_node_group_info: BrokerNodeGroupInfo,
    pub client_authentication: Option<ClientAuthentication>,
    pub cluster_name: String,
    pub configuration_info: Option<ConfigurationInfo>,
    pub encryption_info: Option<EncryptionInfo>,
    pub enhanced_monitoring: Option<String>,
    pub kafka_version: String,
    pub logging_info: Option<LoggingInfo>,
    pub number_of_broker_nodes: i64,
    pub open_monitoring: Option<OpenMonitoringInfo>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

broker_node_group_info: BrokerNodeGroupInfo
        <p>Information about the broker nodes in the cluster.</p>
client_authentication: Option<ClientAuthentication>
        <p>Includes all client authentication related information.</p>
cluster_name: String
        <p>The name of the cluster.</p>
configuration_info: Option<ConfigurationInfo>
        <p>Represents the configuration that you want MSK to use for the brokers in a cluster.</p>
encryption_info: Option<EncryptionInfo>
        <p>Includes all encryption-related information.</p>
enhanced_monitoring: Option<String>
        <p>Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, and PER_TOPIC_PER_BROKER.</p>
kafka_version: String
        <p>The version of Apache Kafka.</p>
logging_info: Option<LoggingInfo>number_of_broker_nodes: i64
        <p>The number of broker nodes in the cluster.</p>
open_monitoring: Option<OpenMonitoringInfo>
        <p>The settings for open monitoring.</p>
tags: Option<HashMap<String, String>>
        <p>Create tags when creating the cluster.</p>

Trait Implementations

impl Clone for CreateClusterRequest[src]

impl Debug for CreateClusterRequest[src]

impl Default for CreateClusterRequest[src]

impl PartialEq<CreateClusterRequest> for CreateClusterRequest[src]

impl Serialize for CreateClusterRequest[src]

impl StructuralPartialEq for CreateClusterRequest[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> From<T> for T[src]

impl<T> Instrument 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.