Show / Hide Table of Contents

Class CfnFileSystem.ClientConfigurationsProperty

Specifies who can mount an OpenZFS file system and the options available while mounting the file system.

Inheritance
object
CfnFileSystem.ClientConfigurationsProperty
Implements
CfnFileSystem.IClientConfigurationsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFileSystem.ClientConfigurationsProperty : CfnFileSystem.IClientConfigurationsProperty
Syntax (vb)
Public Class CfnFileSystem.ClientConfigurationsProperty Implements CfnFileSystem.IClientConfigurationsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-clientconfigurations.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.FSx;

             var clientConfigurationsProperty = new ClientConfigurationsProperty {
                 Clients = "clients",
                 Options = new [] { "options" }
             };

Synopsis

Constructors

ClientConfigurationsProperty()

Specifies who can mount an OpenZFS file system and the options available while mounting the file system.

Properties

Clients

A value that specifies who can mount the file system.

Options

The options to use when mounting the file system.

Constructors

ClientConfigurationsProperty()

Specifies who can mount an OpenZFS file system and the options available while mounting the file system.

public ClientConfigurationsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-clientconfigurations.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.FSx;

             var clientConfigurationsProperty = new ClientConfigurationsProperty {
                 Clients = "clients",
                 Options = new [] { "options" }
             };

Properties

Clients

A value that specifies who can mount the file system.

public string? Clients { get; set; }
Property Value

string

Remarks

You can provide a wildcard character ( * ), an IP address ( 0.0.0.0 ), or a CIDR address ( 192.0.2.0/24 ). By default, Amazon FSx uses the wildcard character when specifying the client.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-clientconfigurations.html#cfn-fsx-filesystem-clientconfigurations-clients

Options

The options to use when mounting the file system.

public string[]? Options { get; set; }
Property Value

string[]

Remarks

For a list of options that you can use with Network File System (NFS), see the exports(5) - Linux man page . When choosing your options, consider the following:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-clientconfigurations.html#cfn-fsx-filesystem-clientconfigurations-options

    Implements

    CfnFileSystem.IClientConfigurationsProperty
    Back to top Generated by DocFX