Struct aws_sdk_kafka::types::ServerlessRequest
source · #[non_exhaustive]pub struct ServerlessRequest {
pub vpc_configs: Option<Vec<VpcConfig>>,
pub client_authentication: Option<ServerlessClientAuthentication>,
}
Expand description
Serverless cluster request.
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.vpc_configs: Option<Vec<VpcConfig>>
The configuration of the Amazon VPCs for the cluster.
client_authentication: Option<ServerlessClientAuthentication>
Includes all client authentication information.
Implementations§
source§impl ServerlessRequest
impl ServerlessRequest
sourcepub fn vpc_configs(&self) -> Option<&[VpcConfig]>
pub fn vpc_configs(&self) -> Option<&[VpcConfig]>
The configuration of the Amazon VPCs for the cluster.
sourcepub fn client_authentication(&self) -> Option<&ServerlessClientAuthentication>
pub fn client_authentication(&self) -> Option<&ServerlessClientAuthentication>
Includes all client authentication information.
source§impl ServerlessRequest
impl ServerlessRequest
sourcepub fn builder() -> ServerlessRequestBuilder
pub fn builder() -> ServerlessRequestBuilder
Creates a new builder-style object to manufacture ServerlessRequest
.
Trait Implementations§
source§impl Clone for ServerlessRequest
impl Clone for ServerlessRequest
source§fn clone(&self) -> ServerlessRequest
fn clone(&self) -> ServerlessRequest
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 Debug for ServerlessRequest
impl Debug for ServerlessRequest
source§impl PartialEq<ServerlessRequest> for ServerlessRequest
impl PartialEq<ServerlessRequest> for ServerlessRequest
source§fn eq(&self, other: &ServerlessRequest) -> bool
fn eq(&self, other: &ServerlessRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ServerlessRequest
Auto Trait Implementations§
impl RefUnwindSafe for ServerlessRequest
impl Send for ServerlessRequest
impl Sync for ServerlessRequest
impl Unpin for ServerlessRequest
impl UnwindSafe for ServerlessRequest
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