Interface CfnSecurityConfig.ISamlConfigOptionsProperty
Describes SAML options for an OpenSearch Serverless security configuration in the form of a key-value map.
Namespace: Amazon.CDK.AWS.OpenSearchServerless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISamlConfigOptionsProperty
Syntax (vb)
Public Interface ISamlConfigOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.OpenSearchServerless;
var samlConfigOptionsProperty = new SamlConfigOptionsProperty {
Metadata = "metadata",
// the properties below are optional
GroupAttribute = "groupAttribute",
OpenSearchServerlessEntityId = "openSearchServerlessEntityId",
SessionTimeout = 123,
UserAttribute = "userAttribute"
};
Synopsis
Properties
Group |
The group attribute for this SAML integration. |
Metadata | The XML IdP metadata file generated from your identity provider. |
Open |
Custom entity id attribute to override default entity id for this saml integration. |
Session |
The session timeout, in minutes. |
User |
A user attribute for this SAML integration. |
Properties
GroupAttribute
The group attribute for this SAML integration.
virtual string GroupAttribute { get; }
Property Value
System.
Remarks
Metadata
The XML IdP metadata file generated from your identity provider.
string Metadata { get; }
Property Value
System.
Remarks
OpenSearchServerlessEntityId
Custom entity id attribute to override default entity id for this saml integration.
virtual string OpenSearchServerlessEntityId { get; }
Property Value
System.
Remarks
SessionTimeout
The session timeout, in minutes.
virtual Nullable<double> SessionTimeout { get; }
Property Value
System.
Remarks
UserAttribute
A user attribute for this SAML integration.
virtual string UserAttribute { get; }
Property Value
System.