Struct aws_sdk_transfer::operation::list_users::ListUsersOutput
source · #[non_exhaustive]pub struct ListUsersOutput {
pub next_token: Option<String>,
pub server_id: Option<String>,
pub users: Option<Vec<ListedUser>>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_token: Option<String>When you can get additional results from the ListUsers call, a NextToken parameter is returned in the output. You can then pass in a subsequent command to the NextToken parameter to continue listing additional users.
server_id: Option<String>A system-assigned unique identifier for a server that the users are assigned to.
users: Option<Vec<ListedUser>>Returns the Transfer Family users and their properties for the ServerId value that you specify.
Implementations§
source§impl ListUsersOutput
impl ListUsersOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When you can get additional results from the ListUsers call, a NextToken parameter is returned in the output. You can then pass in a subsequent command to the NextToken parameter to continue listing additional users.
sourcepub fn server_id(&self) -> Option<&str>
pub fn server_id(&self) -> Option<&str>
A system-assigned unique identifier for a server that the users are assigned to.
sourcepub fn users(&self) -> Option<&[ListedUser]>
pub fn users(&self) -> Option<&[ListedUser]>
Returns the Transfer Family users and their properties for the ServerId value that you specify.
source§impl ListUsersOutput
impl ListUsersOutput
sourcepub fn builder() -> ListUsersOutputBuilder
pub fn builder() -> ListUsersOutputBuilder
Creates a new builder-style object to manufacture ListUsersOutput.
Trait Implementations§
source§impl Clone for ListUsersOutput
impl Clone for ListUsersOutput
source§fn clone(&self) -> ListUsersOutput
fn clone(&self) -> ListUsersOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListUsersOutput
impl Debug for ListUsersOutput
source§impl PartialEq for ListUsersOutput
impl PartialEq for ListUsersOutput
source§fn eq(&self, other: &ListUsersOutput) -> bool
fn eq(&self, other: &ListUsersOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListUsersOutput
impl RequestId for ListUsersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.