#[non_exhaustive]pub struct ListUsersOutputBuilder { /* private fields */ }Expand description
A builder for ListUsersOutput.
Implementations§
source§impl ListUsersOutputBuilder
impl ListUsersOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &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.
sourcepub fn server_id(self, input: impl Into<String>) -> Self
pub fn server_id(self, input: impl Into<String>) -> Self
A system-assigned unique identifier for a server that the users are assigned to.
sourcepub fn set_server_id(self, input: Option<String>) -> Self
pub fn set_server_id(self, input: Option<String>) -> Self
A system-assigned unique identifier for a server that the users are assigned to.
sourcepub fn get_server_id(&self) -> &Option<String>
pub fn get_server_id(&self) -> &Option<String>
A system-assigned unique identifier for a server that the users are assigned to.
sourcepub fn users(self, input: ListedUser) -> Self
pub fn users(self, input: ListedUser) -> Self
Appends an item to users.
To override the contents of this collection use set_users.
Returns the Transfer Family users and their properties for the ServerId value that you specify.
sourcepub fn set_users(self, input: Option<Vec<ListedUser>>) -> Self
pub fn set_users(self, input: Option<Vec<ListedUser>>) -> Self
Returns the Transfer Family users and their properties for the ServerId value that you specify.
sourcepub fn get_users(&self) -> &Option<Vec<ListedUser>>
pub fn get_users(&self) -> &Option<Vec<ListedUser>>
Returns the Transfer Family users and their properties for the ServerId value that you specify.
sourcepub fn build(self) -> ListUsersOutput
pub fn build(self) -> ListUsersOutput
Consumes the builder and constructs a ListUsersOutput.
Trait Implementations§
source§impl Clone for ListUsersOutputBuilder
impl Clone for ListUsersOutputBuilder
source§fn clone(&self) -> ListUsersOutputBuilder
fn clone(&self) -> ListUsersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListUsersOutputBuilder
impl Debug for ListUsersOutputBuilder
source§impl Default for ListUsersOutputBuilder
impl Default for ListUsersOutputBuilder
source§fn default() -> ListUsersOutputBuilder
fn default() -> ListUsersOutputBuilder
source§impl PartialEq for ListUsersOutputBuilder
impl PartialEq for ListUsersOutputBuilder
source§fn eq(&self, other: &ListUsersOutputBuilder) -> bool
fn eq(&self, other: &ListUsersOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.