[][src]Struct rusoto_transfer::TestIdentityProviderRequest

pub struct TestIdentityProviderRequest {
    pub server_id: String,
    pub server_protocol: Option<String>,
    pub source_ip: Option<String>,
    pub user_name: String,
    pub user_password: Option<String>,
}

Fields

server_id: String

A system-assigned identifier for a specific file transfer protocol-enabled server. That server's user authentication method is tested with a user name and password.

server_protocol: Option<String>

The type of file transfer protocol to be tested.

The available protocols are:

  • Secure Shell (SSH) File Transfer Protocol (SFTP)

  • File Transfer Protocol Secure (FTPS)

  • File Transfer Protocol (FTP)

source_ip: Option<String>

The source IP address of the user account to be tested.

user_name: String

The name of the user account to be tested.

user_password: Option<String>

The password of the user account to be tested.

Trait Implementations

impl Clone for TestIdentityProviderRequest[src]

impl Debug for TestIdentityProviderRequest[src]

impl Default for TestIdentityProviderRequest[src]

impl PartialEq<TestIdentityProviderRequest> for TestIdentityProviderRequest[src]

impl Serialize for TestIdentityProviderRequest[src]

impl StructuralPartialEq for TestIdentityProviderRequest[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> From<T> for T[src]

impl<T> Instrument 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.