List Security Configs
opensearchserviceserverless_list_security_configs | R Documentation |
Returns information about configured OpenSearch Serverless security configurations¶
Description¶
Returns information about configured OpenSearch Serverless security configurations. For more information, see SAML authentication for Amazon OpenSearch Serverless.
Usage¶
Arguments¶
maxResults
An optional parameter that specifies the maximum number of results to return. You can use
nextToken
to get the next page of results. The default is 20.nextToken
If your initial
list_security_configs
operation returns anextToken
, you can include the returnednextToken
in subsequentlist_security_configs
operations, which returns results in the next page.type
[required] The type of security configuration.
Value¶
A list with the following syntax:
list(
nextToken = "string",
securityConfigSummaries = list(
list(
configVersion = "string",
createdDate = 123,
description = "string",
id = "string",
lastModifiedDate = 123,
type = "saml"
)
)
)