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¶
opensearchserviceserverless_list_security_configs(type, nextToken,
maxResults)
Arguments¶
type |
[required] The type of security configuration. |
nextToken |
If your initial |
maxResults |
An optional parameter that specifies the maximum number of
results to return. You can use |
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"
)
Request syntax¶
svc$list_security_configs(
type = "saml"|"iamidentitycenter",
nextToken = "string",
maxResults = 123
)