#[non_exhaustive]pub struct GetKxConnectionStringOutput {
pub signed_connection_string: Option<String>,
/* private fields */
}
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.signed_connection_string: Option<String>
The signed connection string that you can use to connect to clusters.
Implementations§
source§impl GetKxConnectionStringOutput
impl GetKxConnectionStringOutput
sourcepub fn signed_connection_string(&self) -> Option<&str>
pub fn signed_connection_string(&self) -> Option<&str>
The signed connection string that you can use to connect to clusters.
source§impl GetKxConnectionStringOutput
impl GetKxConnectionStringOutput
sourcepub fn builder() -> GetKxConnectionStringOutputBuilder
pub fn builder() -> GetKxConnectionStringOutputBuilder
Creates a new builder-style object to manufacture GetKxConnectionStringOutput
.
Trait Implementations§
source§impl Clone for GetKxConnectionStringOutput
impl Clone for GetKxConnectionStringOutput
source§fn clone(&self) -> GetKxConnectionStringOutput
fn clone(&self) -> GetKxConnectionStringOutput
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 GetKxConnectionStringOutput
impl Debug for GetKxConnectionStringOutput
source§impl PartialEq for GetKxConnectionStringOutput
impl PartialEq for GetKxConnectionStringOutput
source§fn eq(&self, other: &GetKxConnectionStringOutput) -> bool
fn eq(&self, other: &GetKxConnectionStringOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetKxConnectionStringOutput
impl RequestId for GetKxConnectionStringOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetKxConnectionStringOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetKxConnectionStringOutput
impl Send for GetKxConnectionStringOutput
impl Sync for GetKxConnectionStringOutput
impl Unpin for GetKxConnectionStringOutput
impl UnwindSafe for GetKxConnectionStringOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.