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.
2750 2751 2752 2753 2754 2755 2756 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2750 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.
2750 2751 2752 2753 2754 2755 2756 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2750 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
.
2750 2751 2752 2753 2754 2755 2756 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2750 class UpdateFileSystemRequest < Struct.new( :file_system_id, :throughput_mode, :provisioned_throughput_in_mibps) SENSITIVE = [] include Aws::Structure end |