aws-cdk-lib.aws_opensearchserverless.CfnSecurityConfigProps

interface CfnSecurityConfigProps

LanguageType name
.NETAmazon.CDK.AWS.OpenSearchServerless.CfnSecurityConfigProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsopensearchserverless#CfnSecurityConfigProps
Javasoftware.amazon.awscdk.services.opensearchserverless.CfnSecurityConfigProps
Pythonaws_cdk.aws_opensearchserverless.CfnSecurityConfigProps
TypeScript aws-cdk-lib » aws_opensearchserverless » CfnSecurityConfigProps

Properties for defining a CfnSecurityConfig.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as opensearchserverless } from 'aws-cdk-lib';
const cfnSecurityConfigProps: opensearchserverless.CfnSecurityConfigProps = {
  description: 'description',
  name: 'name',
  samlOptions: {
    metadata: 'metadata',

    // the properties below are optional
    groupAttribute: 'groupAttribute',
    sessionTimeout: 123,
    userAttribute: 'userAttribute',
  },
  type: 'type',
};

Properties

NameTypeDescription
description?stringThe description of the security configuration.
name?stringThe name of the security configuration.
samlOptions?IResolvable | SamlConfigOptionsPropertySAML options for the security configuration in the form of a key-value map.
type?stringThe type of security configuration.

description?

Type: string (optional)

The description of the security configuration.


name?

Type: string (optional)

The name of the security configuration.


samlOptions?

Type: IResolvable | SamlConfigOptionsProperty (optional)

SAML options for the security configuration in the form of a key-value map.


type?

Type: string (optional)

The type of security configuration.

Currently the only option is saml .