interface IdpProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchService.CfnDomainPropsMixin.IdpProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchservice#CfnDomainPropsMixin_IdpProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchservice.CfnDomainPropsMixin.IdpProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchservice.CfnDomainPropsMixin.IdpProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchservice » CfnDomainPropsMixin » IdpProperty |
The SAML Identity Provider's information.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchservice as opensearchservice } from '@aws-cdk/cfn-property-mixins';
const idpProperty: opensearchservice.CfnDomainPropsMixin.IdpProperty = {
entityId: 'entityId',
metadataContent: 'metadataContent',
};
Properties
| Name | Type | Description |
|---|---|---|
| entity | string | The unique entity ID of the application in the SAML identity provider. |
| metadata | string | The metadata of the SAML application, in XML format. |
entityId?
Type:
string
(optional)
The unique entity ID of the application in the SAML identity provider.
metadataContent?
Type:
string
(optional)
The metadata of the SAML application, in XML format.

.NET
Go
Java
Python
TypeScript