interface IdpProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchService.Mixins.CfnDomainPropsMixin.IdpProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchservice/mixins#CfnDomainPropsMixin_IdpProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchservice.mixins.CfnDomainPropsMixin.IdpProperty |
Python | aws_cdk.mixins_preview.aws_opensearchservice.mixins.CfnDomainPropsMixin.IdpProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchservice » mixins » 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 { mixins as opensearchservice_mixins } from '@aws-cdk/mixins-preview/aws-opensearchservice';
const idpProperty: opensearchservice_mixins.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