interface SamlConfigOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchServerless.Mixins.CfnSecurityConfigPropsMixin.SamlConfigOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchserverless/mixins#CfnSecurityConfigPropsMixin_SamlConfigOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.CfnSecurityConfigPropsMixin.SamlConfigOptionsProperty |
Python | aws_cdk.mixins_preview.aws_opensearchserverless.mixins.CfnSecurityConfigPropsMixin.SamlConfigOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchserverless » mixins » CfnSecurityConfigPropsMixin » SamlConfigOptionsProperty |
Describes SAML options for an OpenSearch Serverless security configuration in the form of a key-value map.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchserverless_mixins } from '@aws-cdk/mixins-preview/aws-opensearchserverless';
const samlConfigOptionsProperty: opensearchserverless_mixins.CfnSecurityConfigPropsMixin.SamlConfigOptionsProperty = {
groupAttribute: 'groupAttribute',
metadata: 'metadata',
openSearchServerlessEntityId: 'openSearchServerlessEntityId',
sessionTimeout: 123,
userAttribute: 'userAttribute',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The group attribute for this SAML integration. |
| metadata? | string | The XML IdP metadata file generated from your identity provider. |
| open | string | Custom entity ID attribute to override the default entity ID for this SAML integration. |
| session | number | The session timeout, in minutes. |
| user | string | A user attribute for this SAML integration. |
groupAttribute?
Type:
string
(optional)
The group attribute for this SAML integration.
metadata?
Type:
string
(optional)
The XML IdP metadata file generated from your identity provider.
openSearchServerlessEntityId?
Type:
string
(optional)
Custom entity ID attribute to override the default entity ID for this SAML integration.
sessionTimeout?
Type:
number
(optional)
The session timeout, in minutes.
Default is 60 minutes (12 hours).
userAttribute?
Type:
string
(optional)
A user attribute for this SAML integration.

.NET
Go
Java
Python
TypeScript