Skip to content

List Frameworks

backup_list_frameworks R Documentation

Returns a list of all frameworks for an Amazon Web Services account and Amazon Web Services Region

Description

Returns a list of all frameworks for an Amazon Web Services account and Amazon Web Services Region.

Usage

backup_list_frameworks(MaxResults, NextToken)

Arguments

MaxResults

The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data.

NextToken

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

Value

A list with the following syntax:

list(
  Frameworks = list(
    list(
      FrameworkName = "string",
      FrameworkArn = "string",
      FrameworkDescription = "string",
      NumberOfControls = 123,
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      DeploymentStatus = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

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