Struct aws_sdk_finspace::operation::get_kx_user::GetKxUserOutput
source · #[non_exhaustive]pub struct GetKxUserOutput {
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 GetKxUserOutput
impl GetKxUserOutput
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 GetKxUserOutput
impl GetKxUserOutput
sourcepub fn builder() -> GetKxUserOutputBuilder
pub fn builder() -> GetKxUserOutputBuilder
Creates a new builder-style object to manufacture GetKxUserOutput.
Trait Implementations§
source§impl Clone for GetKxUserOutput
impl Clone for GetKxUserOutput
source§fn clone(&self) -> GetKxUserOutput
fn clone(&self) -> GetKxUserOutput
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 GetKxUserOutput
impl Debug for GetKxUserOutput
source§impl PartialEq for GetKxUserOutput
impl PartialEq for GetKxUserOutput
source§fn eq(&self, other: &GetKxUserOutput) -> bool
fn eq(&self, other: &GetKxUserOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetKxUserOutput
impl RequestId for GetKxUserOutput
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 GetKxUserOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetKxUserOutput
impl Send for GetKxUserOutput
impl Sync for GetKxUserOutput
impl Unpin for GetKxUserOutput
impl UnwindSafe for GetKxUserOutput
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