Skip to main content

application_authentication_methods

Creates, updates, deletes, gets or lists an application_authentication_methods resource.

Overview

Nameapplication_authentication_methods
TypeResource
Idaws.sso_admin.application_authentication_methods

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
iamobjectA structure that describes details for IAM authentication.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_application_authentication_methodselectregionRetrieves details about an authentication method used by an application.
list_application_authentication_methodsselectregionLists all of the authentication methods supported by the specified application.
put_application_authentication_methodreplaceregion, ApplicationArn, AuthenticationMethodType, AuthenticationMethodAdds or updates an authentication method for an application.
delete_application_authentication_methoddeleteregionDeletes an authentication method from an application.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves details about an authentication method used by an application.

SELECT
iam
FROM aws.sso_admin.application_authentication_methods
WHERE region = '{{ region }}' -- required
;

REPLACE examples

Adds or updates an authentication method for an application.

REPLACE aws.sso_admin.application_authentication_methods
SET
ApplicationArn = '{{ ApplicationArn }}',
AuthenticationMethodType = '{{ AuthenticationMethodType }}',
AuthenticationMethod = '{{ AuthenticationMethod }}'
WHERE
region = '{{ region }}' --required
AND ApplicationArn = '{{ ApplicationArn }}' --required
AND AuthenticationMethodType = '{{ AuthenticationMethodType }}' --required
AND AuthenticationMethod = '{{ AuthenticationMethod }}' --required;

DELETE examples

Deletes an authentication method from an application.

DELETE FROM aws.sso_admin.application_authentication_methods
WHERE region = '{{ region }}' --required
;