Class: Aws::EFS::Types::UpdateFileSystemRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::UpdateFileSystemRequest
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID of the file system that you want to update.
-
#provisioned_throughput_in_mibps ⇒ Float
(Optional) The throughput, measured in mebibytes per second (MiBps), that you want to provision for a file system that you're creating.
-
#throughput_mode ⇒ String
(Optional) Updates the file system's throughput mode.
Instance Attribute Details
#file_system_id ⇒ String
The ID of the file system that you want to update.
2845 2846 2847 2848 2849 2850 2851 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2845 class UpdateFileSystemRequest < Struct.new( :file_system_id, :throughput_mode, :provisioned_throughput_in_mibps) SENSITIVE = [] include Aws::Structure end |
#provisioned_throughput_in_mibps ⇒ Float
(Optional) The throughput, measured in mebibytes per second (MiBps),
that you want to provision for a file system that you're creating.
Required if ThroughputMode
is set to provisioned
. Valid values
are 1-3414 MiBps, with the upper limit depending on Region. To
increase this limit, contact Amazon Web Services Support. For more
information, see Amazon EFS quotas that you can increase in the
Amazon EFS User Guide.
2845 2846 2847 2848 2849 2850 2851 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2845 class UpdateFileSystemRequest < Struct.new( :file_system_id, :throughput_mode, :provisioned_throughput_in_mibps) SENSITIVE = [] include Aws::Structure end |
#throughput_mode ⇒ String
(Optional) Updates the file system's throughput mode. If you're
not updating your throughput mode, you don't need to provide this
value in your request. If you are changing the ThroughputMode
to
provisioned
, you must also set a value for
ProvisionedThroughputInMibps
.
2845 2846 2847 2848 2849 2850 2851 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2845 class UpdateFileSystemRequest < Struct.new( :file_system_id, :throughput_mode, :provisioned_throughput_in_mibps) SENSITIVE = [] include Aws::Structure end |