List Usage Profiles
| glue_list_usage_profiles | R Documentation | 
List all the Glue usage profiles¶
Description¶
List all the Glue usage profiles.
Usage¶
glue_list_usage_profiles(NextToken, MaxResults)
Arguments¶
NextToken | 
A continuation token, included if this is a continuation call.  | 
MaxResults | 
The maximum number of usage profiles to return in a single response.  | 
Value¶
A list with the following syntax:
list(
  Profiles = list(
    list(
      Name = "string",
      Description = "string",
      CreatedOn = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedOn = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_usage_profiles(
  NextToken = "string",
  MaxResults = 123
)