[][src]Struct rusoto_transfer::DescribedUser

pub struct DescribedUser {
    pub arn: String,
    pub home_directory: Option<String>,
    pub home_directory_mappings: Option<Vec<HomeDirectoryMapEntry>>,
    pub home_directory_type: Option<String>,
    pub policy: Option<String>,
    pub role: Option<String>,
    pub ssh_public_keys: Option<Vec<SshPublicKey>>,
    pub tags: Option<Vec<Tag>>,
    pub user_name: Option<String>,
}

Describes the properties of a user that was specified.

Fields

arn: String

Specifies the unique Amazon Resource Name (ARN) for the user that was requested to be described.

home_directory: Option<String>

Specifies the landing directory (or folder), which is the location that files are written to or read from in an Amazon S3 bucket, for the described user. An example is your-Amazon-S3-bucket-name>/home/username .

home_directory_mappings: Option<Vec<HomeDirectoryMapEntry>>

Specifies the logical directory mappings that specify what Amazon S3 paths and keys should be visible to your user and how you want to make them visible. You will need to specify the "Entry" and "Target" pair, where Entry shows how the path is made visible and Target is the actual Amazon S3 path. If you only specify a target, it will be displayed as is. You will need to also make sure that your AWS Identity and Access Management (IAM) role provides access to paths in Target.

In most cases, you can use this value instead of the scope-down policy to lock your user down to the designated home directory ("chroot"). To do this, you can set Entry to '/' and set Target to the HomeDirectory parameter value.

home_directory_type: Option<String>

Specifies the type of landing directory (folder) you mapped for your users to see when they log into the file transfer protocol-enabled server. 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.

policy: Option<String>

Specifies the name of the policy in use for the described user.

role: Option<String>

Specifies the IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows a server to access your resources when servicing your users' transfer requests.

ssh_public_keys: Option<Vec<SshPublicKey>>

Specifies the public key portion of the Secure Shell (SSH) keys stored for the described user.

tags: Option<Vec<Tag>>

Specifies the key-value pairs for the user requested. Tag can be used to search for and group users for a variety of purposes.

user_name: Option<String>

Specifies the name of the user that was requested to be described. User names are used for authentication purposes. This is the string that will be used by your user when they log in to your server.

Trait Implementations

impl Clone for DescribedUser[src]

impl Debug for DescribedUser[src]

impl Default for DescribedUser[src]

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

impl PartialEq<DescribedUser> for DescribedUser[src]

impl StructuralPartialEq for DescribedUser[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.