#[non_exhaustive]pub struct UpdateKxUserOutput {
pub user_name: Option<String>,
pub user_arn: Option<String>,
pub environment_id: Option<String>,
pub iam_role: 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.user_name: Option<String>A unique identifier for the user.
user_arn: 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.
environment_id: Option<String>A unique identifier for the kdb environment.
iam_role: Option<String>The IAM role ARN that is associated with the user.
Implementations§
source§impl UpdateKxUserOutput
impl UpdateKxUserOutput
sourcepub fn user_arn(&self) -> Option<&str>
pub fn user_arn(&self) -> Option<&str>
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) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
A unique identifier for the kdb environment.
source§impl UpdateKxUserOutput
impl UpdateKxUserOutput
sourcepub fn builder() -> UpdateKxUserOutputBuilder
pub fn builder() -> UpdateKxUserOutputBuilder
Creates a new builder-style object to manufacture UpdateKxUserOutput.
Trait Implementations§
source§impl Clone for UpdateKxUserOutput
impl Clone for UpdateKxUserOutput
source§fn clone(&self) -> UpdateKxUserOutput
fn clone(&self) -> UpdateKxUserOutput
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 UpdateKxUserOutput
impl Debug for UpdateKxUserOutput
source§impl PartialEq for UpdateKxUserOutput
impl PartialEq for UpdateKxUserOutput
source§fn eq(&self, other: &UpdateKxUserOutput) -> bool
fn eq(&self, other: &UpdateKxUserOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateKxUserOutput
impl RequestId for UpdateKxUserOutput
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 UpdateKxUserOutput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateKxUserOutput
impl Send for UpdateKxUserOutput
impl Sync for UpdateKxUserOutput
impl Unpin for UpdateKxUserOutput
impl UnwindSafe for UpdateKxUserOutput
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