Class FileSystemState
Inherited Members
Namespace: Pulumi.Aws.Efs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class FileSystemState : ResourceArgs
Constructors
View SourceFileSystemState()
Declaration
public FileSystemState()
Properties
View SourceArn
Amazon Resource Name of the file system.
Declaration
public Input<string> Arn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
DnsName
The DNS name for the filesystem per documented convention.
Declaration
public Input<string> DnsName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Encrypted
If true, the disk will be encrypted.
Declaration
public Input<bool> Encrypted { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
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> |
LifecyclePolicy
A file system lifecycle policy object (documented below).
Declaration
public Input<FileSystemLifecyclePolicyGetArgs> LifecyclePolicy { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<FileSystemLifecyclePolicyGetArgs> |
PerformanceMode
The file system performance mode. Can be either "generalPurpose" or "maxIO" (Default: "generalPurpose").
Declaration
public Input<string> PerformanceMode { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |
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> |