[][src]Struct rusoto_ds::SharedDirectory

pub struct SharedDirectory {
    pub created_date_time: Option<f64>,
    pub last_updated_date_time: Option<f64>,
    pub owner_account_id: Option<String>,
    pub owner_directory_id: Option<String>,
    pub share_method: Option<String>,
    pub share_notes: Option<String>,
    pub share_status: Option<String>,
    pub shared_account_id: Option<String>,
    pub shared_directory_id: Option<String>,
}

Details about the shared directory in the directory owner account for which the share request in the directory consumer account has been accepted.

Fields

created_date_time: Option<f64>

The date and time that the shared directory was created.

last_updated_date_time: Option<f64>

The date and time that the shared directory was last updated.

owner_account_id: Option<String>

Identifier of the directory owner account, which contains the directory that has been shared to the consumer account.

owner_directory_id: Option<String>

Identifier of the directory in the directory owner account.

share_method: Option<String>

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 shared directory request (HANDSHAKE).

share_notes: Option<String>

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.

share_status: Option<String>

Current directory status of the shared AWS Managed Microsoft AD directory.

shared_account_id: Option<String>

Identifier of the directory consumer account that has access to the shared directory (OwnerDirectoryId) in the directory owner account.

shared_directory_id: Option<String>

Identifier of the shared directory in the directory consumer account. This identifier is different for each directory owner account.

Trait Implementations

impl Clone for SharedDirectory[src]

impl Debug for SharedDirectory[src]

impl Default for SharedDirectory[src]

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

impl PartialEq<SharedDirectory> for SharedDirectory[src]

impl StructuralPartialEq for SharedDirectory[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, 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> Sealed<T> for T where
    T: ?Sized

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.