pub struct ShareDirectoryRequest {
pub directory_id: String,
pub share_method: String,
pub share_notes: Option<String>,
pub share_target: ShareTarget,
}
Fields§
§directory_id: String
Identifier of the AWS Managed Microsoft AD directory that you want to share with other AWS accounts.
The method used when sharing a directory to determine whether the directory should be shared within your AWS organization (ORGANIZATIONS
) or with any AWS account by sending a directory sharing request (HANDSHAKE
).
A directory share request that is sent by the directory owner to the directory consumer. The request includes a typed message to help the directory consumer administrator determine whether to approve or reject the share invitation.
Identifier for the directory consumer account with whom the directory is to be shared.
Trait Implementations§
Source§fn clone(&self) -> ShareDirectoryRequest
fn clone(&self) -> ShareDirectoryRequest
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§fn default() -> ShareDirectoryRequest
fn default() -> ShareDirectoryRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
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