Interface CfnWorkspace.IdpMetadataProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkspace.IdpMetadataProperty.Jsii$Proxy
Enclosing class:
CfnWorkspace

@Stability(Stable) public static interface CfnWorkspace.IdpMetadataProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.grafana.*;
 IdpMetadataProperty idpMetadataProperty = IdpMetadataProperty.builder()
         .url("url")
         .xml("xml")
         .build();
 

See Also: