Skip to content

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

connect_list_authentication_profiles(InstanceId, MaxResults, NextToken)

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"
)

Request syntax

svc$list_authentication_profiles(
  InstanceId = "string",
  MaxResults = 123,
  NextToken = "string"
)