interface CfnLocationFSxLustreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationFSxLustreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationFSxLustreMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationFSxLustreMixinProps |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationFSxLustreMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationFSxLustreMixinProps |
Properties for CfnLocationFSxLustrePropsMixin.
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 cfnLocationFSxLustreMixinProps: datasync_mixins.CfnLocationFSxLustreMixinProps = {
fsxFilesystemArn: 'fsxFilesystemArn',
securityGroupArns: ['securityGroupArns'],
subdirectory: 'subdirectory',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| fsx | string | Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system. |
| security | string[] | The ARNs of the security groups that are used to configure the FSx for Lustre file system. |
| subdirectory? | string | Specifies a mount path for your FSx for Lustre file system. The path can include subdirectories. |
| tags? | Cfn[] | Specifies labels that help you categorize, filter, and search for your AWS resources. |
fsxFilesystemArn?
Type:
string
(optional)
Specifies the Amazon Resource Name (ARN) of the FSx for Lustre file system.
securityGroupArns?
Type:
string[]
(optional)
The ARNs of the security groups that are used to configure the FSx for Lustre 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 FSx for Lustre file system. The path can include subdirectories.
When the location is used as a source, DataSync reads data from the mount path. When the location is used as a destination, DataSync writes data to the mount path. If you don't include this parameter, DataSync uses the file system's root directory ( / ).
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.

.NET
Go
Java
Python
TypeScript