Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateFileSystemRequest

import type { UpdateFileSystemRequest } from "https://aws-api.deno.dev/v0.4/services/efs.ts?docs=full";
interface UpdateFileSystemRequest {
FileSystemId: string;
ProvisionedThroughputInMibps?: number | null;
ThroughputMode?: ThroughputMode | null;
}

§Properties

§
FileSystemId: string
[src]

The ID of the file system that you want to update.

§
ProvisionedThroughputInMibps?: number | null
[src]

(Optional) Sets the amount of provisioned throughput, in MiB/s, for the file system. Valid values are 1-1024. If you are changing the throughput mode to provisioned, you must also provide the amount of provisioned throughput. Required if ThroughputMode is changed to provisioned on update.

§
ThroughputMode?: ThroughputMode | null
[src]

(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.