List Classification Scopes
macie2_list_classification_scopes | R Documentation |
Retrieves a subset of information about the classification scope for an account¶
Description¶
Retrieves a subset of information about the classification scope for an account.
Usage¶
macie2_list_classification_scopes(name, nextToken)
Arguments¶
name |
The name of the classification scope to retrieve the unique identifier for. |
nextToken |
The nextToken string that specifies which page of results to return in a paginated response. |
Value¶
A list with the following syntax:
list(
classificationScopes = list(
list(
id = "string",
name = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_classification_scopes(
name = "string",
nextToken = "string"
)