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§
Source§impl Clone for TestIdentityProviderRequest
impl Clone for TestIdentityProviderRequest
Source§fn clone(&self) -> TestIdentityProviderRequest
fn clone(&self) -> TestIdentityProviderRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TestIdentityProviderRequest
impl Debug for TestIdentityProviderRequest
Source§impl Default for TestIdentityProviderRequest
impl Default for TestIdentityProviderRequest
Source§fn default() -> TestIdentityProviderRequest
fn default() -> TestIdentityProviderRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for TestIdentityProviderRequest
Auto Trait Implementations§
impl Freeze for TestIdentityProviderRequest
impl RefUnwindSafe for TestIdentityProviderRequest
impl Send for TestIdentityProviderRequest
impl Sync for TestIdentityProviderRequest
impl Unpin for TestIdentityProviderRequest
impl UnwindSafe for TestIdentityProviderRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more