aws_sdk_datasync/client/describe_location_fsx_windows.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeLocationFsxWindows`](crate::operation::describe_location_fsx_windows::builders::DescribeLocationFsxWindowsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`location_arn(impl Into<String>)`](crate::operation::describe_location_fsx_windows::builders::DescribeLocationFsxWindowsFluentBuilder::location_arn) / [`set_location_arn(Option<String>)`](crate::operation::describe_location_fsx_windows::builders::DescribeLocationFsxWindowsFluentBuilder::set_location_arn):<br>required: **true**<br><p>Specifies the Amazon Resource Name (ARN) of the FSx for Windows File Server location.</p><br>
/// - On success, responds with [`DescribeLocationFsxWindowsOutput`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput) with field(s):
/// - [`location_arn(Option<String>)`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput::location_arn): <p>The ARN of the FSx for Windows File Server location.</p>
/// - [`location_uri(Option<String>)`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput::location_uri): <p>The uniform resource identifier (URI) of the FSx for Windows File Server location.</p>
/// - [`security_group_arns(Option<Vec::<String>>)`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput::security_group_arns): <p>The ARNs of the Amazon EC2 security groups that provide access to your file system's preferred subnet.</p> <p>For information about configuring security groups for file system access, see the <a href="https://docs.aws.amazon.com/fsx/latest/WindowsGuide/limit-access-security-groups.html"> <i>Amazon FSx for Windows File Server User Guide</i> </a>.</p>
/// - [`creation_time(Option<DateTime>)`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput::creation_time): <p>The time that the FSx for Windows File Server location was created.</p>
/// - [`user(Option<String>)`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput::user): <p>The user with the permissions to mount and access the FSx for Windows File Server file system.</p>
/// - [`domain(Option<String>)`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsOutput::domain): <p>The name of the Microsoft Active Directory domain that the FSx for Windows File Server file system belongs to.</p>
/// - On failure, responds with [`SdkError<DescribeLocationFsxWindowsError>`](crate::operation::describe_location_fsx_windows::DescribeLocationFsxWindowsError)
pub fn describe_location_fsx_windows(
&self,
) -> crate::operation::describe_location_fsx_windows::builders::DescribeLocationFsxWindowsFluentBuilder {
crate::operation::describe_location_fsx_windows::builders::DescribeLocationFsxWindowsFluentBuilder::new(self.handle.clone())
}
}