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¶
type
[required] The type of security configuration.
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.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.
Value¶
A list with the following syntax:
list(
securityConfigSummaries = list(
list(
id = "string",
type = "saml"|"iamidentitycenter",
configVersion = "string",
description = "string",
createdDate = 123,
lastModifiedDate = 123
)
),
nextToken = "string"
)