interface CfnLocationFSxOpenZFSMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationFSxOpenZFSMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationFSxOpenZFSMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationFSxOpenZFSMixinProps |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationFSxOpenZFSMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationFSxOpenZFSMixinProps |
Properties for CfnLocationFSxOpenZFSPropsMixin.
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 cfnLocationFSxOpenZFSMixinProps: datasync_mixins.CfnLocationFSxOpenZFSMixinProps = {
fsxFilesystemArn: 'fsxFilesystemArn',
protocol: {
nfs: {
mountOptions: {
version: 'version',
},
},
},
securityGroupArns: ['securityGroupArns'],
subdirectory: 'subdirectory',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| fsx | string | The Amazon Resource Name (ARN) of the FSx for OpenZFS file system. |
| protocol? | IResolvable | Protocol | The type of protocol that AWS DataSync uses to access your file system. |
| security | string[] | The ARNs of the security groups that are used to configure the FSx for OpenZFS file system. |
| subdirectory? | string | A subdirectory in the location's path that must begin with /fsx . |
| tags? | Cfn[] | The key-value pair that represents a tag that you want to add to the resource. |
fsxFilesystemArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.
protocol?
Type:
IResolvable | Protocol
(optional)
The type of protocol that AWS DataSync uses to access your file system.
securityGroupArns?
Type:
string[]
(optional)
The ARNs of the security groups that are used to configure the FSx for OpenZFS 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)
A subdirectory in the location's path that must begin with /fsx .
DataSync uses this subdirectory to read or write data (depending on whether the file system is a source or destination location).
tags?
Type:
Cfn[]
(optional)
The key-value pair that represents a tag that you want to add to the resource.
The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.

.NET
Go
Java
Python
TypeScript