Interface CfnWorkspace.AssertionAttributesProperty

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

@Stability(Stable) public static interface CfnWorkspace.AssertionAttributesProperty extends software.amazon.jsii.JsiiSerializable
A structure that defines which attributes in the IdP assertion are to be used to define information about the users authenticated by the IdP to use the workspace.

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.*;
 AssertionAttributesProperty assertionAttributesProperty = AssertionAttributesProperty.builder()
         .email("email")
         .groups("groups")
         .login("login")
         .name("name")
         .org("org")
         .role("role")
         .build();
 

See Also: