Struct aws_sdk_finspace::operation::get_kx_connection_string::builders::GetKxConnectionStringInputBuilder
source · #[non_exhaustive]pub struct GetKxConnectionStringInputBuilder { /* private fields */ }Expand description
A builder for GetKxConnectionStringInput.
Implementations§
source§impl GetKxConnectionStringInputBuilder
impl GetKxConnectionStringInputBuilder
sourcepub fn user_arn(self, input: impl Into<String>) -> Self
pub fn user_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see IAM Identifiers in the IAM User Guide.
This field is required.sourcepub fn set_user_arn(self, input: Option<String>) -> Self
pub fn set_user_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see IAM Identifiers in the IAM User Guide.
sourcepub fn get_user_arn(&self) -> &Option<String>
pub fn get_user_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) that identifies the user. For more information about ARNs and how to use ARNs in policies, see IAM Identifiers in the IAM User Guide.
sourcepub fn environment_id(self, input: impl Into<String>) -> Self
pub fn environment_id(self, input: impl Into<String>) -> Self
A unique identifier for the kdb environment.
This field is required.sourcepub fn set_environment_id(self, input: Option<String>) -> Self
pub fn set_environment_id(self, input: Option<String>) -> Self
A unique identifier for the kdb environment.
sourcepub fn get_environment_id(&self) -> &Option<String>
pub fn get_environment_id(&self) -> &Option<String>
A unique identifier for the kdb environment.
sourcepub fn cluster_name(self, input: impl Into<String>) -> Self
pub fn cluster_name(self, input: impl Into<String>) -> Self
A name of the kdb cluster.
This field is required.sourcepub fn set_cluster_name(self, input: Option<String>) -> Self
pub fn set_cluster_name(self, input: Option<String>) -> Self
A name of the kdb cluster.
sourcepub fn get_cluster_name(&self) -> &Option<String>
pub fn get_cluster_name(&self) -> &Option<String>
A name of the kdb cluster.
sourcepub fn build(self) -> Result<GetKxConnectionStringInput, BuildError>
pub fn build(self) -> Result<GetKxConnectionStringInput, BuildError>
Consumes the builder and constructs a GetKxConnectionStringInput.
source§impl GetKxConnectionStringInputBuilder
impl GetKxConnectionStringInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetKxConnectionStringOutput, SdkError<GetKxConnectionStringError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetKxConnectionStringOutput, SdkError<GetKxConnectionStringError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetKxConnectionStringInputBuilder
impl Clone for GetKxConnectionStringInputBuilder
source§fn clone(&self) -> GetKxConnectionStringInputBuilder
fn clone(&self) -> GetKxConnectionStringInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetKxConnectionStringInputBuilder
impl Default for GetKxConnectionStringInputBuilder
source§fn default() -> GetKxConnectionStringInputBuilder
fn default() -> GetKxConnectionStringInputBuilder
source§impl PartialEq for GetKxConnectionStringInputBuilder
impl PartialEq for GetKxConnectionStringInputBuilder
source§fn eq(&self, other: &GetKxConnectionStringInputBuilder) -> bool
fn eq(&self, other: &GetKxConnectionStringInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetKxConnectionStringInputBuilder
Auto Trait Implementations§
impl Freeze for GetKxConnectionStringInputBuilder
impl RefUnwindSafe for GetKxConnectionStringInputBuilder
impl Send for GetKxConnectionStringInputBuilder
impl Sync for GetKxConnectionStringInputBuilder
impl Unpin for GetKxConnectionStringInputBuilder
impl UnwindSafe for GetKxConnectionStringInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more