Show / Hide Table of Contents

Class FileSystemState

Inheritance
System.Object
InputArgs
ResourceArgs
FileSystemState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Efs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class FileSystemState : ResourceArgs

Constructors

View Source

FileSystemState()

Declaration
public FileSystemState()

Properties

View Source

Arn

Amazon Resource Name of the file system.

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

CreationToken

A unique name (a maximum of 64 characters are allowed) used as reference when creating the Elastic File System to ensure idempotent file system creation. By default generated by this provider. See [Elastic File System] (http://docs.aws.amazon.com/efs/latest/ug/) user guide for more information.

Declaration
public Input<string> CreationToken { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DnsName

The DNS name for the filesystem per documented convention.

Declaration
public Input<string> DnsName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Encrypted

If true, the disk will be encrypted.

Declaration
public Input<bool> Encrypted { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

KmsKeyId

The ARN for the KMS encryption key. When specifying kms_key_id, encrypted needs to be set to true.

Declaration
public Input<string> KmsKeyId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

LifecyclePolicy

A file system lifecycle policy object (documented below).

Declaration
public Input<FileSystemLifecyclePolicyGetArgs> LifecyclePolicy { get; set; }
Property Value
Type Description
Input<FileSystemLifecyclePolicyGetArgs>
View Source

PerformanceMode

The file system performance mode. Can be either &quot;generalPurpose&quot; or &quot;maxIO&quot; (Default: &quot;generalPurpose&quot;).

Declaration
public Input<string> PerformanceMode { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ProvisionedThroughputInMibps

The throughput, measured in MiB/s, that you want to provision for the file system. Only applicable with throughput_mode set to provisioned.

Declaration
public Input<double> ProvisionedThroughputInMibps { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

Tags

A map of tags to assign to the file system.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

ThroughputMode

Throughput mode for the file system. Defaults to bursting. Valid values: bursting, provisioned. When using provisioned, also set provisioned_throughput_in_mibps.

Declaration
public Input<string> ThroughputMode { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.