pub struct DescribeLocationFsxWindowsResponse {
pub creation_time: Option<f64>,
pub domain: Option<String>,
pub location_arn: Option<String>,
pub location_uri: Option<String>,
pub security_group_arns: Option<Vec<String>>,
pub user: Option<String>,
}
Fields§
§creation_time: Option<f64>
The time that the FSx for Windows location was created.
domain: Option<String>
The name of the Windows domain that the FSx for Windows server belongs to.
location_arn: Option<String>
The Amazon resource Name (ARN) of the FSx for Windows location that was described.
location_uri: Option<String>
The URL of the FSx for Windows location that was described.
security_group_arns: Option<Vec<String>>
The Amazon Resource Names (ARNs) of the security groups that are configured for the for the FSx for Windows file system.
user: Option<String>
The user who has the permissions to access files and folders in the FSx for Windows file system.
Trait Implementations§
Source§impl Clone for DescribeLocationFsxWindowsResponse
impl Clone for DescribeLocationFsxWindowsResponse
Source§fn clone(&self) -> DescribeLocationFsxWindowsResponse
fn clone(&self) -> DescribeLocationFsxWindowsResponse
Returns a copy 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 Default for DescribeLocationFsxWindowsResponse
impl Default for DescribeLocationFsxWindowsResponse
Source§fn default() -> DescribeLocationFsxWindowsResponse
fn default() -> DescribeLocationFsxWindowsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeLocationFsxWindowsResponse
impl<'de> Deserialize<'de> for DescribeLocationFsxWindowsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeLocationFsxWindowsResponse
impl PartialEq for DescribeLocationFsxWindowsResponse
Source§fn eq(&self, other: &DescribeLocationFsxWindowsResponse) -> bool
fn eq(&self, other: &DescribeLocationFsxWindowsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeLocationFsxWindowsResponse
Auto Trait Implementations§
impl Freeze for DescribeLocationFsxWindowsResponse
impl RefUnwindSafe for DescribeLocationFsxWindowsResponse
impl Send for DescribeLocationFsxWindowsResponse
impl Sync for DescribeLocationFsxWindowsResponse
impl Unpin for DescribeLocationFsxWindowsResponse
impl UnwindSafe for DescribeLocationFsxWindowsResponse
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