aws-cdk-lib.aws_grafana.CfnWorkspace.IdpMetadataProperty

interface IdpMetadataProperty

LanguageType name
.NETAmazon.CDK.AWS.Grafana.CfnWorkspace.IdpMetadataProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgrafana#CfnWorkspace_IdpMetadataProperty
Javasoftware.amazon.awscdk.services.grafana.CfnWorkspace.IdpMetadataProperty
Pythonaws_cdk.aws_grafana.CfnWorkspace.IdpMetadataProperty
TypeScript aws-cdk-lib » aws_grafana » CfnWorkspace » 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 { aws_grafana as grafana } from 'aws-cdk-lib';
const idpMetadataProperty: grafana.CfnWorkspace.IdpMetadataProperty = {
  url: 'url',
  xml: 'xml',
};

Properties

NameTypeDescription
url?stringThe URL of the location containing the IdP metadata.
xml?stringThe 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.