List Report Plans
backup_list_report_plans | R Documentation |
Returns a list of your report plans¶
Description¶
Returns a list of your report plans. For detailed information about a
single report plan, use describe_report_plan
.
Usage¶
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(
ReportPlans = list(
list(
ReportPlanArn = "string",
ReportPlanName = "string",
ReportPlanDescription = "string",
ReportSetting = list(
ReportTemplate = "string",
FrameworkArns = list(
"string"
),
NumberOfFrameworks = 123,
Accounts = list(
"string"
),
OrganizationUnits = list(
"string"
),
Regions = list(
"string"
)
),
ReportDeliveryChannel = list(
S3BucketName = "string",
S3KeyPrefix = "string",
Formats = list(
"string"
)
),
DeploymentStatus = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastAttemptedExecutionTime = as.POSIXct(
"2015-01-01"
),
LastSuccessfulExecutionTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)