interface IdpMetadataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Grafana.Mixins.CfnWorkspacePropsMixin.IdpMetadataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgrafana/mixins#CfnWorkspacePropsMixin_IdpMetadataProperty |
Java | software.amazon.awscdk.mixins.preview.services.grafana.mixins.CfnWorkspacePropsMixin.IdpMetadataProperty |
Python | aws_cdk.mixins_preview.aws_grafana.mixins.CfnWorkspacePropsMixin.IdpMetadataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_grafana » mixins » CfnWorkspacePropsMixin » IdpMetadataProperty |
A structure containing the identity provider (IdP) metadata used to integrate the identity provider with this workspace.
You can specify the metadata either by providing a URL to its location in the url parameter, or by specifying the full metadata in XML format in the xml parameter. Specifying both will cause an error.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as grafana_mixins } from '@aws-cdk/mixins-preview/aws-grafana';
const idpMetadataProperty: grafana_mixins.CfnWorkspacePropsMixin.IdpMetadataProperty = {
url: 'url',
xml: 'xml',
};
Properties
| Name | Type | Description |
|---|---|---|
| url? | string | The URL of the location containing the IdP metadata. |
| xml? | string | The full IdP metadata, in XML format. |
url?
Type:
string
(optional)
The URL of the location containing the IdP metadata.
xml?
Type:
string
(optional)
The full IdP metadata, in XML format.

.NET
Go
Java
Python
TypeScript