Skip to content

List Profiles

wellarchitected_list_profiles R Documentation

List profiles

Description

List profiles.

Usage

wellarchitected_list_profiles(ProfileNamePrefix, ProfileOwnerType,
  NextToken, MaxResults)

Arguments

ProfileNamePrefix

An optional string added to the beginning of each profile name returned in the results.

ProfileOwnerType

Profile owner type.

NextToken

The token to use to retrieve the next set of results.

MaxResults

The maximum number of results to return for this request.

Value

A list with the following syntax:

list(
  ProfileSummaries = list(
    list(
      ProfileArn = "string",
      ProfileVersion = "string",
      ProfileName = "string",
      ProfileDescription = "string",
      Owner = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_profiles(
  ProfileNamePrefix = "string",
  ProfileOwnerType = "SELF"|"SHARED",
  NextToken = "string",
  MaxResults = 123
)