/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Config type for security config */ export type SecurityConfigType = "saml"; /** * Amazon OpenSearchServerless security config resource */ export interface AwsOpensearchserverlessSecurityconfig { /** * Security config description */ Description?: string; /** * The identifier of the security config */ Id?: string; /** * The friendly name of the security config */ Name?: string; SamlOptions?: SamlConfigOptions; Type?: SecurityConfigType; } /** * Describes saml options in form of key value map */ export interface SamlConfigOptions { /** * The XML saml provider metadata document that you want to use */ Metadata: string; /** * Custom attribute for this saml integration */ UserAttribute?: string; /** * Group attribute for this saml integration */ GroupAttribute?: string; /** * Defines the session timeout in minutes */ SessionTimeout?: number; }