[][src]Struct rusoto_datasync::CreateLocationFsxWindowsRequest

pub struct CreateLocationFsxWindowsRequest {
    pub domain: Option<String>,
    pub fsx_filesystem_arn: String,
    pub password: String,
    pub security_group_arns: Vec<String>,
    pub subdirectory: Option<String>,
    pub tags: Option<Vec<TagListEntry>>,
    pub user: String,
}

Fields

domain: Option<String>

The name of the Windows domain that the FSx for Windows server belongs to.

fsx_filesystem_arn: String

The Amazon Resource Name (ARN) for the FSx for Windows file system.

password: String

The password of the user who has the permissions to access files and folders in the FSx for Windows file system.

security_group_arns: Vec<String>

The Amazon Resource Names (ARNs) of the security groups that are to use to configure the FSx for Windows file system.

subdirectory: Option<String>

A subdirectory in the location’s path. This subdirectory in the Amazon FSx for Windows file system is used to read data from the Amazon FSx for Windows source location or write data to the FSx for Windows destination.

tags: Option<Vec<TagListEntry>>

The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.

user: String

The user who has the permissions to access files and folders in the FSx for Windows file system.

Trait Implementations

impl Clone for CreateLocationFsxWindowsRequest[src]

impl Debug for CreateLocationFsxWindowsRequest[src]

impl Default for CreateLocationFsxWindowsRequest[src]

impl PartialEq<CreateLocationFsxWindowsRequest> for CreateLocationFsxWindowsRequest[src]

impl Serialize for CreateLocationFsxWindowsRequest[src]

impl StructuralPartialEq for CreateLocationFsxWindowsRequest[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, 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.