List Authentication Profiles
connect_list_authentication_profiles | R Documentation |
This API is in preview release for Amazon Connect and is subject to change¶
Description¶
This API is in preview release for Amazon Connect and is subject to change. To request access to this API, contact Amazon Web Services Support.
Provides summary information about the authentication profiles in a specified Amazon Connect instance.
Usage¶
Arguments¶
InstanceId
[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
MaxResults
The maximum number of results to return per page.
NextToken
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Value¶
A list with the following syntax:
list(
AuthenticationProfileSummaryList = list(
list(
Id = "string",
Arn = "string",
Name = "string",
IsDefault = TRUE|FALSE,
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedRegion = "string"
)
),
NextToken = "string"
)