Skip to main content

client_authentication_settings

Creates, updates, deletes, gets or lists a client_authentication_settings resource.

Overview

Nameclient_authentication_settings
TypeResource
Idaws.ds.client_authentication_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
last_updated_date_timestring (date-time)The date and time when the status of the client authentication type was last updated.
statusstringWhether the client authentication type is enabled or disabled for the specified directory. (Enabled, Disabled)
typestringThe type of client authentication for the specified directory. If no type is specified, a list of all client authentication types that are supported for the directory is retrieved. (SmartCard, SmartCardOrPassword)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_client_authentication_settingsselectregionRetrieves information about the type of client authentication for the specified directory, if the type is specified. If no type is specified, information about all client authentication types that are supported for the specified directory is retrieved. Currently, only SmartCard is supported.

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 information about the type of client authentication for the specified directory, if the type is specified. If no type is specified, information about all client authentication types that are supported for the specified directory is retrieved. Currently, only SmartCard is supported.

SELECT
last_updated_date_time,
status,
type
FROM aws.ds.client_authentication_settings
WHERE region = '{{ region }}' -- required
;