Skip to content

Describe Authentication Profiles

redshift_describe_authentication_profiles R Documentation

Describes an authentication profile

Description

Describes an authentication profile.

Usage

redshift_describe_authentication_profiles(AuthenticationProfileName)

Arguments

AuthenticationProfileName

The name of the authentication profile to describe. If not specified then all authentication profiles owned by the account are listed.

Value

A list with the following syntax:

list(
  AuthenticationProfiles = list(
    list(
      AuthenticationProfileName = "string",
      AuthenticationProfileContent = "string"
    )
  )
)

Request syntax

svc$describe_authentication_profiles(
  AuthenticationProfileName = "string"
)