Skip to content

List Backup Plan Templates

backup_list_backup_plan_templates R Documentation

Lists the backup plan templates

Description

Lists the backup plan templates.

Usage

backup_list_backup_plan_templates(NextToken, MaxResults)

Arguments

NextToken

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.

MaxResults

The maximum number of items to return.

Value

A list with the following syntax:

list(
  NextToken = "string",
  BackupPlanTemplatesList = list(
    list(
      BackupPlanTemplateId = "string",
      BackupPlanTemplateName = "string"
    )
  )
)

Request syntax

svc$list_backup_plan_templates(
  NextToken = "string",
  MaxResults = 123
)