interface IdpProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpenSearchService.CfnDomain.IdpProperty |
Java | software.amazon.awscdk.services.opensearchservice.CfnDomain.IdpProperty |
Python | aws_cdk.aws_opensearchservice.CfnDomain.IdpProperty |
TypeScript | @aws-cdk/aws-opensearchservice » CfnDomain » 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 * as opensearchservice from '@aws-cdk/aws-opensearchservice';
const idpProperty: opensearchservice.CfnDomain.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
The unique entity ID of the application in the SAML identity provider.
metadataContent
Type:
string
The metadata of the SAML application, in XML format.

.NET
Java
Python
TypeScript