pub struct ConnectDirectoryRequest {
pub connect_settings: DirectoryConnectSettings,
pub description: Option<String>,
pub name: String,
pub password: String,
pub short_name: Option<String>,
pub size: String,
pub tags: Option<Vec<Tag>>,
}
Expand description
Contains the inputs for the ConnectDirectory operation.
Fields§
§connect_settings: DirectoryConnectSettings
A DirectoryConnectSettings object that contains additional information for the operation.
description: Option<String>
A description for the directory.
name: String
The fully qualified name of the on-premises directory, such as corp.example.com
.
password: String
The password for the on-premises user account.
short_name: Option<String>
The NetBIOS name of the on-premises directory, such as CORP
.
size: String
The size of the directory.
The tags to be assigned to AD Connector.
Trait Implementations§
Source§impl Clone for ConnectDirectoryRequest
impl Clone for ConnectDirectoryRequest
Source§fn clone(&self) -> ConnectDirectoryRequest
fn clone(&self) -> ConnectDirectoryRequest
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 ConnectDirectoryRequest
impl Debug for ConnectDirectoryRequest
Source§impl Default for ConnectDirectoryRequest
impl Default for ConnectDirectoryRequest
Source§fn default() -> ConnectDirectoryRequest
fn default() -> ConnectDirectoryRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConnectDirectoryRequest
impl PartialEq for ConnectDirectoryRequest
Source§impl Serialize for ConnectDirectoryRequest
impl Serialize for ConnectDirectoryRequest
impl StructuralPartialEq for ConnectDirectoryRequest
Auto Trait Implementations§
impl Freeze for ConnectDirectoryRequest
impl RefUnwindSafe for ConnectDirectoryRequest
impl Send for ConnectDirectoryRequest
impl Sync for ConnectDirectoryRequest
impl Unpin for ConnectDirectoryRequest
impl UnwindSafe for ConnectDirectoryRequest
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