OpenSearchServiceServerless / Client / list_security_configs
list_security_configs#
- OpenSearchServiceServerless.Client.list_security_configs(**kwargs)#
Returns information about configured OpenSearch Serverless security configurations. For more information, see SAML authentication for Amazon OpenSearch Serverless.
See also: AWS API Documentation
Request Syntax
response = client.list_security_configs( type='saml'|'iamidentitycenter', nextToken='string', maxResults=123 )
- Parameters:
type (string) –
[REQUIRED]
The type of security configuration.
nextToken (string) – If your initial
ListSecurityConfigs
operation returns anextToken
, you can include the returnednextToken
in subsequentListSecurityConfigs
operations, which returns results in the next page.maxResults (integer) – 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.
- Return type:
dict
- Returns:
Response Syntax
{ 'securityConfigSummaries': [ { 'id': 'string', 'type': 'saml'|'iamidentitycenter', 'configVersion': 'string', 'description': 'string', 'createdDate': 123, 'lastModifiedDate': 123 }, ], 'nextToken': 'string' }
Response Structure
(dict) –
securityConfigSummaries (list) –
Details about the security configurations in your account.
(dict) –
A summary of a security configuration for OpenSearch Serverless.
id (string) –
The unique identifier of the security configuration.
type (string) –
The type of security configuration.
configVersion (string) –
The version of the security configuration.
description (string) –
The description of the security configuration.
createdDate (integer) –
The Epoch time when the security configuration was created.
lastModifiedDate (integer) –
The timestamp of when the configuration was last modified.
nextToken (string) –
When
nextToken
is returned, there are more results available. The value ofnextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.
Exceptions