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¶
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results. The default is 20.nextTokenIf your initial
list_security_configsoperation returns anextToken, you can include the returnednextTokenin subsequentlist_security_configsoperations, 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"
)
)
)