paws.storage (version 0.1.0)

fsx: Amazon FSx

Description

Amazon FSx is a fully managed service that makes it easy for storage and application administrators to launch and use shared file storage.

Usage

fsx()

Arguments

Operations

create_backup Creates a backup of an existing Amazon FSx for Windows File Server file system
create_file_system Creates a new, empty Amazon FSx file system
create_file_system_from_backup Creates a new Amazon FSx file system from an existing Amazon FSx for Windows File Server backup
delete_backup Deletes an Amazon FSx for Windows File Server backup, deleting its contents
delete_file_system Deletes a file system, deleting its contents
describe_backups Returns the description of specific Amazon FSx for Windows File Server backups, if a BackupIds value is provided for that backup
describe_file_systems Returns the description of specific Amazon FSx file systems, if a FileSystemIds value is provided for that file system
list_tags_for_resource Lists tags for an Amazon FSx file systems and backups in the case of Amazon FSx for Windows File Server
tag_resource Tags an Amazon FSx resource
untag_resource This action removes a tag from an Amazon FSx resource

Examples

Run this code
# NOT RUN {
# This operation creates a new backup.
# }
# NOT RUN {
svc <- fsx()
svc$create_backup(
  FileSystemId = "fs-0498eed5fe91001ec",
  Tags = list(
    list(
      Key = "Name",
      Value = "MyBackup"
    )
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace