interface CfnLocationFSxWindowsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationFSxWindowsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationFSxWindowsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationFSxWindowsMixinProps |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationFSxWindowsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationFSxWindowsMixinProps |
Properties for CfnLocationFSxWindowsPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const cfnLocationFSxWindowsMixinProps: datasync_mixins.CfnLocationFSxWindowsMixinProps = {
domain: 'domain',
fsxFilesystemArn: 'fsxFilesystemArn',
password: 'password',
securityGroupArns: ['securityGroupArns'],
subdirectory: 'subdirectory',
tags: [{
key: 'key',
value: 'value',
}],
user: 'user',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain? | string | Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to. |
| fsx | string | Specifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file system. |
| password? | string | Specifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system. |
| security | string[] | The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Windows File Server file system. |
| subdirectory? | string | Specifies a mount path for your file system using forward slashes. |
| tags? | Cfn[] | Specifies labels that help you categorize, filter, and search for your AWS resources. |
| user? | string | The user who has the permissions to access files and folders in the FSx for Windows File Server file system. |
domain?
Type:
string
(optional)
Specifies the name of the Windows domain that the FSx for Windows File Server file system belongs to.
If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.
fsxFilesystemArn?
Type:
string
(optional)
Specifies the Amazon Resource Name (ARN) for the FSx for Windows File Server file system.
password?
Type:
string
(optional)
Specifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system.
securityGroupArns?
Type:
string[]
(optional)
The Amazon Resource Names (ARNs) of the security groups that are used to configure the FSx for Windows File Server file system.
Pattern : ^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:security-group/.*$
Length constraints : Maximum length of 128.
subdirectory?
Type:
string
(optional)
Specifies a mount path for your file system using forward slashes.
This is where DataSync reads or writes data (depending on if this is a source or destination location).
tags?
Type:
Cfn[]
(optional)
Specifies labels that help you categorize, filter, and search for your AWS resources.
We recommend creating at least a name tag for your location.
user?
Type:
string
(optional)
The user who has the permissions to access files and folders in the FSx for Windows File Server file system.
For information about choosing a user name that ensures sufficient permissions to files, folders, and metadata, see user .

.NET
Go
Java
Python
TypeScript