pub struct ListIAMPolicyAssignmentsForUserRequest {
pub aws_account_id: String,
pub max_results: Option<i64>,
pub namespace: String,
pub next_token: Option<String>,
pub user_name: String,
}
Fields§
§aws_account_id: String
The ID of the AWS account that contains the assignments.
max_results: Option<i64>
The maximum number of results to be returned per request.
namespace: String
The namespace of the assignment.
next_token: Option<String>
The token for the next set of results, or null if there are no more results.
user_name: String
The name of the user.
Trait Implementations§
Source§impl Clone for ListIAMPolicyAssignmentsForUserRequest
impl Clone for ListIAMPolicyAssignmentsForUserRequest
Source§fn clone(&self) -> ListIAMPolicyAssignmentsForUserRequest
fn clone(&self) -> ListIAMPolicyAssignmentsForUserRequest
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 Default for ListIAMPolicyAssignmentsForUserRequest
impl Default for ListIAMPolicyAssignmentsForUserRequest
Source§fn default() -> ListIAMPolicyAssignmentsForUserRequest
fn default() -> ListIAMPolicyAssignmentsForUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListIAMPolicyAssignmentsForUserRequest
impl PartialEq for ListIAMPolicyAssignmentsForUserRequest
Source§fn eq(&self, other: &ListIAMPolicyAssignmentsForUserRequest) -> bool
fn eq(&self, other: &ListIAMPolicyAssignmentsForUserRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListIAMPolicyAssignmentsForUserRequest
Auto Trait Implementations§
impl Freeze for ListIAMPolicyAssignmentsForUserRequest
impl RefUnwindSafe for ListIAMPolicyAssignmentsForUserRequest
impl Send for ListIAMPolicyAssignmentsForUserRequest
impl Sync for ListIAMPolicyAssignmentsForUserRequest
impl Unpin for ListIAMPolicyAssignmentsForUserRequest
impl UnwindSafe for ListIAMPolicyAssignmentsForUserRequest
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