ListBackupsInput
public struct ListBackupsInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The backups from the table specified by BackupType are listed. Where BackupType can be: USER - On-demand backup created by you. SYSTEM - On-demand backup automatically created by DynamoDB. ALL - All types of on-demand backups (USER and SYSTEM).
Declaration
Swift
public let backupType: BackupTypeFilter?
-
LastEvaluatedBackupArn is the Amazon Resource Name (ARN) of the backup last evaluated when the current page of results was returned, inclusive of the current page of results. This value may be specified as the ExclusiveStartBackupArn of a new ListBackups operation in order to fetch the next page of results.
Declaration
Swift
public let exclusiveStartBackupArn: String?
-
Maximum number of backups to return at once.
Declaration
Swift
public let limit: Int?
-
The backups from the table specified by TableName are listed.
Declaration
Swift
public let tableName: String?
-
Only backups created after this time are listed. TimeRangeLowerBound is inclusive.
Declaration
Swift
public let timeRangeLowerBound: TimeStamp?
-
Only backups created before this time are listed. TimeRangeUpperBound is exclusive.
Declaration
Swift
public let timeRangeUpperBound: TimeStamp?
-
Undocumented
Declaration
Swift
public init(backupType: BackupTypeFilter? = nil, exclusiveStartBackupArn: String? = nil, limit: Int? = nil, tableName: String? = nil, timeRangeLowerBound: TimeStamp? = nil, timeRangeUpperBound: TimeStamp? = nil)
-
Declaration
Swift
public func validate(name: String) throws