pub struct UpdateUserRequest {
pub aws_account_id: String,
pub email: String,
pub namespace: String,
pub role: String,
pub user_name: String,
}
Fields§
§aws_account_id: String
The ID for the AWS account that the user is in. Currently, you use the ID for the AWS account that contains your Amazon QuickSight account.
email: String
The email address of the user that you want to update.
namespace: String
The namespace. Currently, you should set this to default
.
role: String
The Amazon QuickSight role of the user. The user role can be one of the following:
-
READER
: A user who has read-only access to dashboards. -
AUTHOR
: A user who can create data sources, datasets, analyses, and dashboards. -
ADMIN
: A user who is an author, who can also manage Amazon QuickSight settings.
user_name: String
The Amazon QuickSight user name that you want to update.
Trait Implementations§
Source§impl Clone for UpdateUserRequest
impl Clone for UpdateUserRequest
Source§fn clone(&self) -> UpdateUserRequest
fn clone(&self) -> UpdateUserRequest
Returns a duplicate 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 UpdateUserRequest
impl Debug for UpdateUserRequest
Source§impl Default for UpdateUserRequest
impl Default for UpdateUserRequest
Source§fn default() -> UpdateUserRequest
fn default() -> UpdateUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateUserRequest
impl PartialEq for UpdateUserRequest
Source§impl Serialize for UpdateUserRequest
impl Serialize for UpdateUserRequest
impl StructuralPartialEq for UpdateUserRequest
Auto Trait Implementations§
impl Freeze for UpdateUserRequest
impl RefUnwindSafe for UpdateUserRequest
impl Send for UpdateUserRequest
impl Sync for UpdateUserRequest
impl Unpin for UpdateUserRequest
impl UnwindSafe for UpdateUserRequest
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