Skip to content

Create Authentication Profile

redshift_create_authentication_profile R Documentation

Creates an authentication profile with the specified parameters

Description

Creates an authentication profile with the specified parameters.

Usage

redshift_create_authentication_profile(AuthenticationProfileName,
  AuthenticationProfileContent)

Arguments

AuthenticationProfileName

[required] The name of the authentication profile to be created.

AuthenticationProfileContent

[required] The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.

Value

A list with the following syntax:

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

Request syntax

svc$create_authentication_profile(
  AuthenticationProfileName = "string",
  AuthenticationProfileContent = "string"
)