FsxOpenZfsFileSystemArgs constructor

const FsxOpenZfsFileSystemArgs({
  1. required Input<String> fsxFilesystemArn,
  2. required Input<FsxOpenZfsFileSystemProtocol> protocol,
  3. Input<String?>? region,
  4. required Input<List<String>> securityGroupArns,
  5. Input<String?>? subdirectory,
  6. Input<Map<String, String>?>? tags,
})

Creates a new FsxOpenZfsFileSystemArgs. fsxFilesystemArn ARN for the FSx for OpenZfs file system. protocol The type of protocol that DataSync uses to access your file system. See below. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. securityGroupArns ARNs of the security groups that are to use to configure the FSx for openzfs file system. subdirectory Subdirectory to perform actions as source or destination. Must start with /fsx. tags Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Implementation

const FsxOpenZfsFileSystemArgs({
  required this.fsxFilesystemArn,
  required this.protocol,
  this.region,
  required this.securityGroupArns,
  this.subdirectory,
  this.tags,
});