pub struct CreateConfigurationRequest {
pub description: Option<String>,
pub kafka_versions: Option<Vec<String>>,
pub name: String,
pub server_properties: Bytes,
}Fields§
§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>
name: String <p>The name of the configuration.</p>
server_properties: Bytes <p>Contents of the <filename>server.properties</filename> file. When using the API, you must ensure that the contents of the file are base64 encoded.
When using the AWS Management Console, the SDK, or the AWS CLI, the contents of <filename>server.properties</filename> can be in plaintext.</p>
Trait Implementations§
Source§impl Clone for CreateConfigurationRequest
impl Clone for CreateConfigurationRequest
Source§fn clone(&self) -> CreateConfigurationRequest
fn clone(&self) -> CreateConfigurationRequest
Returns a duplicate 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 CreateConfigurationRequest
impl Debug for CreateConfigurationRequest
Source§impl Default for CreateConfigurationRequest
impl Default for CreateConfigurationRequest
Source§fn default() -> CreateConfigurationRequest
fn default() -> CreateConfigurationRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateConfigurationRequest
Auto Trait Implementations§
impl !Freeze for CreateConfigurationRequest
impl RefUnwindSafe for CreateConfigurationRequest
impl Send for CreateConfigurationRequest
impl Sync for CreateConfigurationRequest
impl Unpin for CreateConfigurationRequest
impl UnwindSafe for CreateConfigurationRequest
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