[][src]Struct rusoto_transfer::ListedUser

pub struct ListedUser {
    pub arn: String,
    pub home_directory: Option<String>,
    pub home_directory_type: Option<String>,
    pub role: Option<String>,
    pub ssh_public_key_count: Option<i64>,
    pub user_name: Option<String>,
}

Returns properties of the user that you specify.

Fields

arn: String

Provides the unique Amazon Resource Name (ARN) for the user that you want to learn about.

home_directory: Option<String>

Specifies the location that files are written to or read from an Amazon S3 bucket for the user you specify by their ARN.

home_directory_type: Option<String>

Specifies the type of landing directory (folder) you mapped for your users' home directory. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their file transfer protocol clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 paths visible to your users.

role: Option<String>

Specifies the role that is in use by this user. A role is an AWS Identity and Access Management (IAM) entity that, in this case, allows a file transfer protocol-enabled server to act on a user's behalf. It allows the server to inherit the trust relationship that enables that user to perform file operations to their Amazon S3 bucket.

ssh_public_key_count: Option<i64>

Specifies the number of SSH public keys stored for the user you specified.

user_name: Option<String>

Specifies the name of the user whose ARN was specified. User names are used for authentication purposes.

Trait Implementations

impl Clone for ListedUser[src]

impl Debug for ListedUser[src]

impl Default for ListedUser[src]

impl<'de> Deserialize<'de> for ListedUser[src]

impl PartialEq<ListedUser> for ListedUser[src]

impl StructuralPartialEq for ListedUser[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.