Learn R Programming

paws.storage (version 0.1.12)

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(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- fsx(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

associate_file_system_aliasesUse this action to associate one or more Domain Name Server (DNS) aliases with an existing Amazon FSx for Windows File Server file system
cancel_data_repository_taskCancels an existing Amazon FSx for Lustre data repository task if that task is in either the PENDING or EXECUTING state
create_backupCreates a backup of an existing Amazon FSx file system
create_data_repository_taskCreates an Amazon FSx for Lustre data repository task
create_file_systemCreates a new, empty Amazon FSx file system
create_file_system_from_backupCreates a new Amazon FSx file system from an existing Amazon FSx backup
delete_backupDeletes an Amazon FSx backup, deleting its contents
delete_file_systemDeletes a file system, deleting its contents
describe_backupsReturns the description of specific Amazon FSx backups, if a BackupIds value is provided for that backup
describe_data_repository_tasksReturns the description of specific Amazon FSx for Lustre data repository tasks, if one or more TaskIds values are provided in the request, or if filters are used in the request
describe_file_system_aliasesReturns the DNS aliases that are associated with the specified Amazon FSx for Windows File Server file system
describe_file_systemsReturns the description of specific Amazon FSx file systems, if a FileSystemIds value is provided for that file system
disassociate_file_system_aliasesUse this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases from an Amazon FSx for Windows File Server file system
list_tags_for_resourceLists tags for an Amazon FSx file systems and backups in the case of Amazon FSx for Windows File Server
tag_resourceTags an Amazon FSx resource
untag_resourceThis action removes a tag from an Amazon FSx resource
update_file_systemUse this operation to update the configuration of an existing Amazon FSx file system

Examples

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

Run the code above in your browser using DataLab