View source: R/efs_operations.R
efs_create_file_system | R Documentation |
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 Amazon Web Services account with the specified creation token, this operation does the following:
See https://www.paws-r-sdk.com/docs/efs_create_file_system/ for full documentation.
efs_create_file_system(
CreationToken,
PerformanceMode = NULL,
Encrypted = NULL,
KmsKeyId = NULL,
ThroughputMode = NULL,
ProvisionedThroughputInMibps = NULL,
AvailabilityZoneName = NULL,
Backup = NULL,
Tags = NULL
)
CreationToken |
[required] A string of up to 64 ASCII characters. Amazon EFS uses this to ensure idempotent creation. |
PerformanceMode |
The Performance mode of the file system. We recommend Due to the higher per-operation latencies with Max I/O, we recommend using General Purpose performance mode for all file systems. Default is |
Encrypted |
A Boolean value that, if true, creates an encrypted file system. When
creating an encrypted file system, you have the option of specifying an
existing Key Management Service key (KMS key). If you don't specify a
KMS key, then the default KMS key for Amazon EFS,
|
KmsKeyId |
The ID of the KMS key that you want to use to protect the encrypted file system. This parameter is required only if you want to use a non-default KMS key. If this parameter is not specified, the default KMS key for Amazon EFS is used. You can specify a KMS key ID using the following formats:
If you use EFS accepts only symmetric KMS keys. You cannot use asymmetric KMS keys with Amazon EFS file systems. |
ThroughputMode |
Specifies the throughput mode for the file system. The mode can be
Default is |
ProvisionedThroughputInMibps |
The throughput, measured in mebibytes per second (MiBps), that you want
to provision for a file system that you're creating. Required if
|
AvailabilityZoneName |
Used to create a One Zone file system. It specifies the Amazon Web
Services Availability Zone in which to create the file system. Use the
format One Zone file systems are not available in all Availability Zones in Amazon Web Services Regions where Amazon EFS is available. |
Backup |
Specifies whether automatic backups are enabled on the file system that
you are creating. Set the value to Default is Backup is not available in all Amazon Web Services Regions where Amazon EFS is available. |
Tags |
Use to create one or more tags associated with the file system. Each tag
is a user-defined key-value pair. Name your file system on creation by
including a |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.