ListRecoveryPointsByBackupVaultInput

public struct ListRecoveryPointsByBackupVaultInput : AWSShape
extension AWSBackup.ListRecoveryPointsByBackupVaultInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the AWS Region where they are created. They consist of lowercase letters, numbers, and hyphens.

    Declaration

    Swift

    public let backupVaultName: String
  • Returns only recovery points that match the specified backup plan ID.

    Declaration

    Swift

    public let byBackupPlanId: String?
  • Returns only recovery points that were created after the specified timestamp.

    Declaration

    Swift

    public let byCreatedAfter: TimeStamp?
  • Returns only recovery points that were created before the specified timestamp.

    Declaration

    Swift

    public let byCreatedBefore: TimeStamp?
  • Returns only recovery points that match the specified resource Amazon Resource Name (ARN).

    Declaration

    Swift

    public let byResourceArn: String?
  • Returns only recovery points that match the specified resource type.

    Declaration

    Swift

    public let byResourceType: String?
  • The maximum number of items to be returned.

    Declaration

    Swift

    public let maxResults: Int?
  • The next item following a partial list of returned items. For example, if a request is made to return maxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(backupVaultName: String, byBackupPlanId: String? = nil, byCreatedAfter: TimeStamp? = nil, byCreatedBefore: TimeStamp? = nil, byResourceArn: String? = nil, byResourceType: String? = nil, maxResults: Int? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws