Describe Backups
opsworkscm_describe_backups | R Documentation |
Describes backups¶
Description¶
Describes backups. The results are ordered by time, with newest backups first. If you do not specify a BackupId or ServerName, the command returns all backups.
This operation is synchronous.
A ResourceNotFoundException
is thrown when the backup does not exist.
A ValidationException
is raised when parameters of the request are not
valid.
Usage¶
Arguments¶
BackupId
Describes a single backup.
ServerName
Returns backups for the server with the specified ServerName.
NextToken
This is not currently implemented for
describe_backups
requests.MaxResults
This is not currently implemented for
describe_backups
requests.
Value¶
A list with the following syntax:
list(
Backups = list(
list(
BackupArn = "string",
BackupId = "string",
BackupType = "AUTOMATED"|"MANUAL",
CreatedAt = as.POSIXct(
"2015-01-01"
),
Description = "string",
Engine = "string",
EngineModel = "string",
EngineVersion = "string",
InstanceProfileArn = "string",
InstanceType = "string",
KeyPair = "string",
PreferredBackupWindow = "string",
PreferredMaintenanceWindow = "string",
S3DataSize = 123,
S3DataUrl = "string",
S3LogUrl = "string",
SecurityGroupIds = list(
"string"
),
ServerName = "string",
ServiceRoleArn = "string",
Status = "IN_PROGRESS"|"OK"|"FAILED"|"DELETING",
StatusDescription = "string",
SubnetIds = list(
"string"
),
ToolsVersion = "string",
UserArn = "string"
)
),
NextToken = "string"
)