Show / Hide Table of Contents

Class CfnLocationFSxOpenZFSProps

Properties for defining a CfnLocationFSxOpenZFS.

Inheritance
System.Object
CfnLocationFSxOpenZFSProps
Implements
ICfnLocationFSxOpenZFSProps
Namespace: Amazon.CDK.AWS.DataSync
Assembly: Amazon.CDK.AWS.DataSync.dll
Syntax (csharp)
public class CfnLocationFSxOpenZFSProps : Object, ICfnLocationFSxOpenZFSProps
Syntax (vb)
Public Class CfnLocationFSxOpenZFSProps
    Inherits Object
    Implements ICfnLocationFSxOpenZFSProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataSync;

CfnLocationFSxOpenZFSProps cfnLocationFSxOpenZFSProps = new CfnLocationFSxOpenZFSProps {
    FsxFilesystemArn = "fsxFilesystemArn",
    Protocol = new ProtocolProperty {
        Nfs = new NFSProperty {
            MountOptions = new MountOptionsProperty {
                Version = "version"
            }
        }
    },
    SecurityGroupArns = new [] { "securityGroupArns" },

    // the properties below are optional
    Subdirectory = "subdirectory",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Constructors

CfnLocationFSxOpenZFSProps()

Properties

FsxFilesystemArn

The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.

Protocol

The type of protocol that AWS DataSync uses to access your file system.

SecurityGroupArns

The ARNs of the security groups that are used to configure the FSx for OpenZFS file system.

Subdirectory

A subdirectory in the location's path that must begin with /fsx .

Tags

The key-value pair that represents a tag that you want to add to the resource.

Constructors

CfnLocationFSxOpenZFSProps()

public CfnLocationFSxOpenZFSProps()

Properties

FsxFilesystemArn

The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.

public string FsxFilesystemArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html#cfn-datasync-locationfsxopenzfs-fsxfilesystemarn

Protocol

The type of protocol that AWS DataSync uses to access your file system.

public object Protocol { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html#cfn-datasync-locationfsxopenzfs-protocol

SecurityGroupArns

The ARNs of the security groups that are used to configure the FSx for OpenZFS file system.

public string[] SecurityGroupArns { get; set; }
Property Value

System.String[]

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html#cfn-datasync-locationfsxopenzfs-securitygrouparns

Subdirectory

A subdirectory in the location's path that must begin with /fsx .

public string Subdirectory { get; set; }
Property Value

System.String

Remarks

DataSync uses this subdirectory to read or write data (depending on whether the file system is a source or destination location).

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html#cfn-datasync-locationfsxopenzfs-subdirectory

Tags

The key-value pair that represents a tag that you want to add to the resource.

public ICfnTag[] Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationfsxopenzfs.html#cfn-datasync-locationfsxopenzfs-tags

Implements

ICfnLocationFSxOpenZFSProps
Back to top Generated by DocFX