Skip to content

Put Application Authentication Method

ssoadmin_put_application_authentication_method R Documentation

Adds or updates an authentication method for an application

Description

Adds or updates an authentication method for an application.

Usage

ssoadmin_put_application_authentication_method(ApplicationArn,
  AuthenticationMethodType, AuthenticationMethod)

Arguments

ApplicationArn

[required] Specifies the ARN of the application with the authentication method to add or update.

AuthenticationMethodType

[required] Specifies the type of the authentication method that you want to add or update.

AuthenticationMethod

[required] Specifies a structure that describes the authentication method to add or update. The structure type you provide is determined by the AuthenticationMethodType parameter.

Value

An empty list.

Request syntax

svc$put_application_authentication_method(
  ApplicationArn = "string",
  AuthenticationMethodType = "IAM",
  AuthenticationMethod = list(
    Iam = list(
      ActorPolicy = list()
    )
  )
)