Get Enrollment Statuses for Organization
| computeoptimizer_get_enrollment_statuses_for_organization | R Documentation |
Returns the Compute Optimizer enrollment (opt-in) status of organization member accounts, if your account is an organization management account¶
Description¶
Returns the Compute Optimizer enrollment (opt-in) status of organization member accounts, if your account is an organization management account.
To get the enrollment status of standalone accounts, use the
get_enrollment_status action.
Usage¶
Arguments¶
filtersAn array of objects to specify a filter that returns a more specific list of account enrollment statuses.
nextTokenThe token to advance to the next page of account enrollment statuses.
maxResultsThe maximum number of account enrollment statuses to return with a single request. You can specify up to 100 statuses to return with each request.
To retrieve the remaining results, make another request with the returned
nextTokenvalue.
Value¶
A list with the following syntax:
list(
accountEnrollmentStatuses = list(
list(
accountId = "string",
status = "Active"|"Inactive"|"Pending"|"Failed",
statusReason = "string",
lastUpdatedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)