import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::DataSync::LocationFSxWindows. */ export declare function getLocationFSxWindows(args: GetLocationFSxWindowsArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetLocationFSxWindowsArgs { /** * The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created. */ locationArn: string; } export interface GetLocationFSxWindowsResult { readonly cmkSecretConfig?: outputs.datasync.LocationFSxWindowsCmkSecretConfig; readonly customSecretConfig?: outputs.datasync.LocationFSxWindowsCustomSecretConfig; /** * The name of the Windows domain that the FSx for Windows server belongs to. */ readonly domain?: string; /** * The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created. */ readonly locationArn?: string; /** * The URL of the FSx for Windows location that was described. */ readonly locationUri?: string; readonly managedSecretConfig?: outputs.datasync.LocationFSxWindowsManagedSecretConfig; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; /** * The user who has the permissions to access files and folders in the FSx for Windows file system. */ readonly user?: string; } /** * Resource Type definition for AWS::DataSync::LocationFSxWindows. */ export declare function getLocationFSxWindowsOutput(args: GetLocationFSxWindowsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetLocationFSxWindowsOutputArgs { /** * The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created. */ locationArn: pulumi.Input; }