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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkspace.IdpMetadataProperty
static final class
An implementation forCfnWorkspace.IdpMetadataProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUrl
The URL of the location containing the IdP metadata. -
getXml
The full IdP metadata, in XML format. -
builder
-