Interface CfnWorkspacePropsMixin.IdpMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspacePropsMixin.IdpMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnWorkspacePropsMixin
@Stability(Stable)
public static interface CfnWorkspacePropsMixin.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.cfnpropertymixins.services.grafana.*;
IdpMetadataProperty idpMetadataProperty = IdpMetadataProperty.builder()
.url("url")
.xml("xml")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspacePropsMixin.IdpMetadataPropertystatic final classAn implementation forCfnWorkspacePropsMixin.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.- See Also:
-
getXml
The full IdP metadata, in XML format.- See Also:
-
builder
-