amazonka-efs-1.5.0: Amazon Elastic File System SDK.

Copyright(c) 2013-2017 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.EFS.CreateFileSystem

Contents

Description

Creates a new, empty file system. The operation requires a creation token in the request that Amazon EFS uses to ensure idempotent creation (calling the operation with same creation token has no effect). If a file system does not currently exist that is owned by the caller's AWS account with the specified creation token, this operation does the following:

  • Creates a new, empty file system. The file system will have an Amazon EFS assigned ID, and an initial lifecycle state creating .
  • Returns with the description of the created file system.

Otherwise, this operation returns a FileSystemAlreadyExists error with the ID of the existing file system.

The idempotent operation allows you to retry a CreateFileSystem call without risk of creating an extra file system. This can happen when an initial call fails in a way that leaves it uncertain whether or not a file system was actually created. An example might be that a transport level timeout occurred or your connection was reset. As long as you use the same creation token, if the initial call had succeeded in creating a file system, the client can learn of its existence from the FileSystemAlreadyExists error.

This operation also takes an optional PerformanceMode parameter that you choose for your file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. The performance mode can't be changed after the file system has been created. For more information, see Amazon EFS: Performance Modes .

After the file system is fully created, Amazon EFS sets its lifecycle state to available , at which point you can create one or more mount targets for the file system in your VPC. For more information, see CreateMountTarget . You mount your Amazon EFS file system on an EC2 instances in your VPC via the mount target. For more information, see Amazon EFS: How it Works .

This operation requires permissions for the elasticfilesystem:CreateFileSystem action.

Synopsis

Creating a Request

createFileSystem Source #

Creates a value of CreateFileSystem with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cfsPerformanceMode - The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.
  • cfsEncrypted - A boolean value that, if true, creates an encrypted file system. When creating an encrypted file system, you have the option of specifying a 'CreateFileSystemRequest$KmsKeyId' for an existing AWS Key Management Service (AWS KMS) customer master key (CMK). If you don't specify a CMK, then the default CMK for Amazon EFS, awselasticfilesystem , is used to protect the encrypted file system.
  • cfsKMSKeyId - The id of the AWS KMS CMK that will be used to protect the encrypted file system. This parameter is only required if you want to use a non-default CMK. If this parameter is not specified, the default CMK for Amazon EFS is used. This id can be in one of the following formats: * Key ID - A unique identifier of the key. For example, 1234abcd-12ab-34cd-56ef-1234567890ab . * ARN - An Amazon Resource Name for the key. For example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab . * Key alias - A previously created display name for a key. For example, alias/projectKey1 . * Key alias ARN - An Amazon Resource Name for a key alias. For example, arn:aws:kms:us-west-2:444455556666:alias/projectKey1 . Note that if the KmsKeyId is specified, the 'CreateFileSystemRequest$Encrypted' parameter must be set to true.
  • cfsCreationToken - String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

data CreateFileSystem Source #

See: createFileSystem smart constructor.

Instances

Eq CreateFileSystem Source # 
Data CreateFileSystem Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CreateFileSystem -> c CreateFileSystem #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CreateFileSystem #

toConstr :: CreateFileSystem -> Constr #

dataTypeOf :: CreateFileSystem -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c CreateFileSystem) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CreateFileSystem) #

gmapT :: (forall b. Data b => b -> b) -> CreateFileSystem -> CreateFileSystem #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CreateFileSystem -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CreateFileSystem -> r #

gmapQ :: (forall d. Data d => d -> u) -> CreateFileSystem -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CreateFileSystem -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CreateFileSystem -> m CreateFileSystem #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateFileSystem -> m CreateFileSystem #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CreateFileSystem -> m CreateFileSystem #

Read CreateFileSystem Source # 
Show CreateFileSystem Source # 
Generic CreateFileSystem Source # 
Hashable CreateFileSystem Source # 
ToJSON CreateFileSystem Source # 
NFData CreateFileSystem Source # 

Methods

rnf :: CreateFileSystem -> () #

AWSRequest CreateFileSystem Source # 
ToQuery CreateFileSystem Source # 
ToPath CreateFileSystem Source # 
ToHeaders CreateFileSystem Source # 
type Rep CreateFileSystem Source # 
type Rep CreateFileSystem = D1 (MetaData "CreateFileSystem" "Network.AWS.EFS.CreateFileSystem" "amazonka-efs-1.5.0-AGdA5NiO2mlIVVmSCQcc4J" False) (C1 (MetaCons "CreateFileSystem'" PrefixI True) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_cfsPerformanceMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PerformanceMode))) (S1 (MetaSel (Just Symbol "_cfsEncrypted") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)))) ((:*:) (S1 (MetaSel (Just Symbol "_cfsKMSKeyId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) (S1 (MetaSel (Just Symbol "_cfsCreationToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs CreateFileSystem Source # 

Request Lenses

cfsPerformanceMode :: Lens' CreateFileSystem (Maybe PerformanceMode) Source #

The PerformanceMode of the file system. We recommend generalPurpose performance mode for most file systems. File systems using the maxIO performance mode can scale to higher levels of aggregate throughput and operations per second with a tradeoff of slightly higher latencies for most file operations. This can't be changed after the file system has been created.

cfsEncrypted :: Lens' CreateFileSystem (Maybe Bool) Source #

A boolean value that, if true, creates an encrypted file system. When creating an encrypted file system, you have the option of specifying a 'CreateFileSystemRequest$KmsKeyId' for an existing AWS Key Management Service (AWS KMS) customer master key (CMK). If you don't specify a CMK, then the default CMK for Amazon EFS, awselasticfilesystem , is used to protect the encrypted file system.

cfsKMSKeyId :: Lens' CreateFileSystem (Maybe Text) Source #

The id of the AWS KMS CMK that will be used to protect the encrypted file system. This parameter is only required if you want to use a non-default CMK. If this parameter is not specified, the default CMK for Amazon EFS is used. This id can be in one of the following formats: * Key ID - A unique identifier of the key. For example, 1234abcd-12ab-34cd-56ef-1234567890ab . * ARN - An Amazon Resource Name for the key. For example, arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab . * Key alias - A previously created display name for a key. For example, alias/projectKey1 . * Key alias ARN - An Amazon Resource Name for a key alias. For example, arn:aws:kms:us-west-2:444455556666:alias/projectKey1 . Note that if the KmsKeyId is specified, the 'CreateFileSystemRequest$Encrypted' parameter must be set to true.

cfsCreationToken :: Lens' CreateFileSystem Text Source #

String of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation.

Destructuring the Response

fileSystemDescription Source #

Creates a value of FileSystemDescription with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • fsdEncrypted - A boolean value that, if true, indicates that the file system is encrypted.
  • fsdKMSKeyId - The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the encrypted file system.
  • fsdName - You can add tags to a file system, including a Name tag. For more information, see CreateTags . If the file system has a Name tag, Amazon EFS returns the value in this field.
  • fsdOwnerId - AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.
  • fsdCreationToken - Opaque string specified in the request.
  • fsdFileSystemId - ID of the file system, assigned by Amazon EFS.
  • fsdCreationTime - Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).
  • fsdLifeCycleState - Lifecycle phase of the file system.
  • fsdNumberOfMountTargets - Current number of mount targets that the file system has. For more information, see CreateMountTarget .
  • fsdSizeInBytes - Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.
  • fsdPerformanceMode - The PerformanceMode of the file system.

data FileSystemDescription Source #

Description of the file system.

See: fileSystemDescription smart constructor.

Instances

Eq FileSystemDescription Source # 
Data FileSystemDescription Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> FileSystemDescription -> c FileSystemDescription #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c FileSystemDescription #

toConstr :: FileSystemDescription -> Constr #

dataTypeOf :: FileSystemDescription -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c FileSystemDescription) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c FileSystemDescription) #

gmapT :: (forall b. Data b => b -> b) -> FileSystemDescription -> FileSystemDescription #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> FileSystemDescription -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> FileSystemDescription -> r #

gmapQ :: (forall d. Data d => d -> u) -> FileSystemDescription -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> FileSystemDescription -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> FileSystemDescription -> m FileSystemDescription #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> FileSystemDescription -> m FileSystemDescription #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> FileSystemDescription -> m FileSystemDescription #

Read FileSystemDescription Source # 
Show FileSystemDescription Source # 
Generic FileSystemDescription Source # 
Hashable FileSystemDescription Source # 
FromJSON FileSystemDescription Source # 
NFData FileSystemDescription Source # 

Methods

rnf :: FileSystemDescription -> () #

type Rep FileSystemDescription Source # 
type Rep FileSystemDescription = D1 (MetaData "FileSystemDescription" "Network.AWS.EFS.Types.Product" "amazonka-efs-1.5.0-AGdA5NiO2mlIVVmSCQcc4J" False) (C1 (MetaCons "FileSystemDescription'" PrefixI True) ((:*:) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_fsdEncrypted") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool))) (S1 (MetaSel (Just Symbol "_fsdKMSKeyId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) ((:*:) (S1 (MetaSel (Just Symbol "_fsdName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) ((:*:) (S1 (MetaSel (Just Symbol "_fsdOwnerId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_fsdCreationToken") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))) ((:*:) ((:*:) (S1 (MetaSel (Just Symbol "_fsdFileSystemId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_fsdCreationTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 POSIX)) (S1 (MetaSel (Just Symbol "_fsdLifeCycleState") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 LifeCycleState)))) ((:*:) (S1 (MetaSel (Just Symbol "_fsdNumberOfMountTargets") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Nat)) ((:*:) (S1 (MetaSel (Just Symbol "_fsdSizeInBytes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 FileSystemSize)) (S1 (MetaSel (Just Symbol "_fsdPerformanceMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 PerformanceMode)))))))

Response Lenses

fsdEncrypted :: Lens' FileSystemDescription (Maybe Bool) Source #

A boolean value that, if true, indicates that the file system is encrypted.

fsdKMSKeyId :: Lens' FileSystemDescription (Maybe Text) Source #

The id of an AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the encrypted file system.

fsdName :: Lens' FileSystemDescription (Maybe Text) Source #

You can add tags to a file system, including a Name tag. For more information, see CreateTags . If the file system has a Name tag, Amazon EFS returns the value in this field.

fsdOwnerId :: Lens' FileSystemDescription Text Source #

AWS account that created the file system. If the file system was created by an IAM user, the parent account to which the user belongs is the owner.

fsdCreationToken :: Lens' FileSystemDescription Text Source #

Opaque string specified in the request.

fsdFileSystemId :: Lens' FileSystemDescription Text Source #

ID of the file system, assigned by Amazon EFS.

fsdCreationTime :: Lens' FileSystemDescription UTCTime Source #

Time that the file system was created, in seconds (since 1970-01-01T00:00:00Z).

fsdLifeCycleState :: Lens' FileSystemDescription LifeCycleState Source #

Lifecycle phase of the file system.

fsdNumberOfMountTargets :: Lens' FileSystemDescription Natural Source #

Current number of mount targets that the file system has. For more information, see CreateMountTarget .

fsdSizeInBytes :: Lens' FileSystemDescription FileSystemSize Source #

Latest known metered size (in bytes) of data stored in the file system, in bytes, in its Value field, and the time at which that size was determined in its Timestamp field. The Timestamp value is the integer number of seconds since 1970-01-01T00:00:00Z. Note that the value does not represent the size of a consistent snapshot of the file system, but it is eventually consistent when there are no writes to the file system. That is, the value will represent actual size only if the file system is not modified for a period longer than a couple of hours. Otherwise, the value is not the exact size the file system was at any instant in time.

fsdPerformanceMode :: Lens' FileSystemDescription PerformanceMode Source #

The PerformanceMode of the file system.