NAME
Paws::EFS::UpdateFileSystem - Arguments for method UpdateFileSystem on Paws::EFS
DESCRIPTION
This class represents the parameters used for calling the method UpdateFileSystem on the Amazon Elastic File System service. Use the attributes of this class as arguments to method UpdateFileSystem.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateFileSystem.
SYNOPSIS
my $elasticfilesystem = Paws->service('EFS');
my $FileSystemDescription = $elasticfilesystem->UpdateFileSystem(
FileSystemId => 'MyFileSystemId',
ProvisionedThroughputInMibps => 1, # OPTIONAL
ThroughputMode => 'bursting', # OPTIONAL
);
# Results:
my $CreationTime = $FileSystemDescription->CreationTime;
my $CreationToken = $FileSystemDescription->CreationToken;
my $Encrypted = $FileSystemDescription->Encrypted;
my $FileSystemId = $FileSystemDescription->FileSystemId;
my $KmsKeyId = $FileSystemDescription->KmsKeyId;
my $LifeCycleState = $FileSystemDescription->LifeCycleState;
my $Name = $FileSystemDescription->Name;
my $NumberOfMountTargets = $FileSystemDescription->NumberOfMountTargets;
my $OwnerId = $FileSystemDescription->OwnerId;
my $PerformanceMode = $FileSystemDescription->PerformanceMode;
my $ProvisionedThroughputInMibps =
$FileSystemDescription->ProvisionedThroughputInMibps;
my $SizeInBytes = $FileSystemDescription->SizeInBytes;
my $Tags = $FileSystemDescription->Tags;
my $ThroughputMode = $FileSystemDescription->ThroughputMode;
# Returns a L<Paws::EFS::FileSystemDescription> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/elasticfilesystem/UpdateFileSystem
ATTRIBUTES
REQUIRED FileSystemId => Str
The ID of the file system that you want to update.
ProvisionedThroughputInMibps => Num
(Optional) The amount of throughput, in MiB/s, that you want to provision for your file system. Valid values are 1-1024. Required if ThroughputMode is changed to provisioned on update. If you're not updating the amount of provisioned throughput for your file system, you don't need to provide this value in your request.
ThroughputMode => Str
(Optional) The throughput mode that you want your file system to use. 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.
Valid values are: "bursting", "provisioned"
SEE ALSO
This class forms part of Paws, documenting arguments for method UpdateFileSystem in Paws::EFS
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues